Ext.NET  5.3.0
.NET Component Framework for Enterprise Level Apps
Ext.Net.ComponentLoader.Config Class Reference

More...

Inheritance diagram for Ext.Net.ComponentLoader.Config:
Ext.Net.Observable.Config Ext.Net.BaseControl.Config Ext.Net.IApply

Static Public Member Functions

static implicit operator ComponentLoader.Builder (ComponentLoader.Config config)
 
- Static Public Member Functions inherited from Ext.Net.BaseControl.Config
static Config ToConfig (string config)
 
static TConfig ToConfig< TConfig > (string config)
 

Properties

virtual bool DisableCaching [get, set]
 True to add a unique cache-buster param to GET requests. (defaults to true) More...
 
virtual string DisableCachingParam [get, set]
 Change the parameter which is sent went disabling caching through a cache buster. Defaults to '_dc' More...
 
virtual AjaxOptions AjaxOptions [get, set]
 Any additional options to be passed to the request, for example timeout or headers. More...
 
virtual bool PassParentSize [get, set]
 
virtual string TriggerEvent [get, set]
 Event which triggers loading process. Default value is render More...
 
virtual string TriggerControl [get, set]
 TriggerEvent's control More...
 
virtual bool ReloadOnEvent [get, set]
 Reload content on each show event. More...
 
virtual bool RemoveD [get, set]
 
virtual bool MonitorComplete [get, set]
 True to monitor complete state of the iframe instead load event using. More...
 
virtual string Callback [get, set]
 
virtual bool AutoLoad [get, set]
 True to have the loader make a request as soon as it is created. Defaults to true. This argument can also be a set of options that will be passed to load is called. More...
 
ParameterCollection BaseParams [get]
 Params that will be attached to every request. These parameters will not be overridden by any params in the load options. Defaults to null. More...
 
virtual string Failure [get, set]
 A function to be called when a load request fails. More...
 
LoadMask LoadMask [get]
 True or a Ext.LoadMask configuration to enable masking during loading. Defaults to false. More...
 
ParameterCollection Params [get]
 Any params to be attached to the Ajax request. These parameters will be overridden by any params in the load options. Defaults to null. More...
 
virtual bool Scripts [get, set]
 True to parse any inline script tags in the response. More...
 
virtual bool RemoveAll [get, set]
 True to remove all existing components when a load completes. This option is only takes effect when the renderer option is set to component. Defaults to false. More...
 
virtual ? LoadMode Mode [get, set]
 The type of content that is to be loaded into, which can be one of 4 types. Html|Data|Component|Frame More...
 
virtual string ParentRef [get, set]
 
virtual string Renderer [get, set]
 The function which handles the response More...
 
virtual string RendererScope [get, set]
 The scope to execute the renderer function in. More...
 
virtual string Scope [get, set]
 The scope to execute the success and failure functions in. More...
 
virtual string Success [get, set]
 A function to be called when a load request is successful. More...
 
virtual string Target [get, set]
 The target Ext.AbstractComponent for the loader. Defaults to null. If a string is passed it will be looked up via the id. More...
 
virtual string Url [get, set]
 The url to retrieve the content from. Defaults to null. More...
 
virtual string DirectMethod [get, set]
 The direct method name provides a content for the component More...
 
virtual bool ShowWarningOnFailure [get, set]
 Show warning if request fail. More...
 
ComponentLoaderListeners Listeners [get]
 Client-side JavaScript Event Handlers More...
 
- Properties inherited from Ext.Net.Observable.Config
ConfigItemCollection CustomConfig [get]
 Collection of custom js config More...
 
MessageBusListeners MessageBusListeners [get]
 
MessageBusDirectEvents MessageBusDirectEvents [get]
 
- Properties inherited from Ext.Net.BaseControl.Config
virtual string ItemID [get, set]
 An itemId can be used as an alternative way to get a reference to a component when no object reference is available. More...
 
virtual bool Disabled [get, set]
 
virtual short TabIndex [get, set]
 
virtual bool IsInForm [get, set]
 
virtual Unit Height [get, set]
 
virtual Unit Width [get, set]
 
virtual string ToolTip [get, set]
 
virtual bool RegisterAllResources [get, set]
 
virtual bool AutoDataBind [get, set]
 
virtual IDMode IDMode [get, set]
 
virtual LazyMode LazyMode [get, set]
 
virtual string Namespace [get, set]
 
List< ClientResourceItemResourceItems [get]
 

Additional Inherited Members

- Public Member Functions inherited from Ext.Net.BaseControl.Config
override string ToString ()
 
override bool Equals (object obj)
 
override int GetHashCode ()
 
new Type GetType ()
 
object ApplyIf (object obj)
 
Apply< T > (object obj)
 
object Apply (object obj)
 
virtual string ToScript ()
 

Detailed Description

Member Function Documentation

◆ operator ComponentLoader.Builder()

static implicit Ext.Net.ComponentLoader.Config.operator ComponentLoader.Builder ( ComponentLoader.Config  config)
inlinestatic

Property Documentation

◆ AjaxOptions

virtual AjaxOptions Ext.Net.ComponentLoader.Config.AjaxOptions
getset

Any additional options to be passed to the request, for example timeout or headers.

◆ AutoLoad

virtual bool Ext.Net.ComponentLoader.Config.AutoLoad
getset

True to have the loader make a request as soon as it is created. Defaults to true. This argument can also be a set of options that will be passed to load is called.

◆ BaseParams

ParameterCollection Ext.Net.ComponentLoader.Config.BaseParams
get

Params that will be attached to every request. These parameters will not be overridden by any params in the load options. Defaults to null.

◆ Callback

virtual string Ext.Net.ComponentLoader.Config.Callback
getset

◆ DirectMethod

virtual string Ext.Net.ComponentLoader.Config.DirectMethod
getset

The direct method name provides a content for the component

◆ DisableCaching

virtual bool Ext.Net.ComponentLoader.Config.DisableCaching
getset

True to add a unique cache-buster param to GET requests. (defaults to true)

◆ DisableCachingParam

virtual string Ext.Net.ComponentLoader.Config.DisableCachingParam
getset

Change the parameter which is sent went disabling caching through a cache buster. Defaults to '_dc'

◆ Failure

virtual string Ext.Net.ComponentLoader.Config.Failure
getset

A function to be called when a load request fails.

◆ Listeners

ComponentLoaderListeners Ext.Net.ComponentLoader.Config.Listeners
get

Client-side JavaScript Event Handlers

◆ LoadMask

LoadMask Ext.Net.ComponentLoader.Config.LoadMask
get

True or a Ext.LoadMask configuration to enable masking during loading. Defaults to false.

◆ Mode

virtual ? LoadMode Ext.Net.ComponentLoader.Config.Mode
getset

The type of content that is to be loaded into, which can be one of 4 types. Html|Data|Component|Frame

◆ MonitorComplete

virtual bool Ext.Net.ComponentLoader.Config.MonitorComplete
getset

True to monitor complete state of the iframe instead load event using.

◆ Params

ParameterCollection Ext.Net.ComponentLoader.Config.Params
get

Any params to be attached to the Ajax request. These parameters will be overridden by any params in the load options. Defaults to null.

◆ ParentRef

virtual string Ext.Net.ComponentLoader.Config.ParentRef
getset

◆ PassParentSize

virtual bool Ext.Net.ComponentLoader.Config.PassParentSize
getset

◆ ReloadOnEvent

virtual bool Ext.Net.ComponentLoader.Config.ReloadOnEvent
getset

Reload content on each show event.

◆ RemoveAll

virtual bool Ext.Net.ComponentLoader.Config.RemoveAll
getset

True to remove all existing components when a load completes. This option is only takes effect when the renderer option is set to component. Defaults to false.

◆ RemoveD

virtual bool Ext.Net.ComponentLoader.Config.RemoveD
getset

◆ Renderer

virtual string Ext.Net.ComponentLoader.Config.Renderer
getset

The function which handles the response

◆ RendererScope

virtual string Ext.Net.ComponentLoader.Config.RendererScope
getset

The scope to execute the renderer function in.

◆ Scope

virtual string Ext.Net.ComponentLoader.Config.Scope
getset

The scope to execute the success and failure functions in.

◆ Scripts

virtual bool Ext.Net.ComponentLoader.Config.Scripts
getset

True to parse any inline script tags in the response.

◆ ShowWarningOnFailure

virtual bool Ext.Net.ComponentLoader.Config.ShowWarningOnFailure
getset

Show warning if request fail.

◆ Success

virtual string Ext.Net.ComponentLoader.Config.Success
getset

A function to be called when a load request is successful.

◆ Target

virtual string Ext.Net.ComponentLoader.Config.Target
getset

The target Ext.AbstractComponent for the loader. Defaults to null. If a string is passed it will be looked up via the id.

◆ TriggerControl

virtual string Ext.Net.ComponentLoader.Config.TriggerControl
getset

TriggerEvent's control

◆ TriggerEvent

virtual string Ext.Net.ComponentLoader.Config.TriggerEvent
getset

Event which triggers loading process. Default value is render

◆ Url

virtual string Ext.Net.ComponentLoader.Config.Url
getset

The url to retrieve the content from. Defaults to null.


The documentation for this class was generated from the following file: