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

More...

Inheritance diagram for Ext.Net.AbstractStoreListeners:
Ext.Net.ComponentListeners Ext.Net.BaseItem Ext.Net.IXObject Ext.Net.IBase Ext.Net.StoreListeners Ext.Net.TreeStoreListeners Ext.Net.ClientStoreListeners

Properties

virtual ComponentListener?? Add [get]
 Fired when a Model instance has been added to this Store Parameters store : Ext.data.Store The store More...
 
virtual ComponentListener?? BeginUpdate [get]
 Fires when the beginUpdate method is called. Automatic synchronization as configured by the autoSync flag is deferred until the endUpdate method is called, so multiple mutations can be coalesced into one synchronization operation. More...
 
virtual ComponentListener?? BeforeLoad [get]
 Fires before a request is made for a new data object. If the beforeload handler returns false the load action will be canceled Parameters store : Ext.data.Store This Store More...
 
virtual ComponentListener?? BeforeSort [get]
 Fires before a store is sorted. For remotely sorted stores, this will be just before the load operation triggered by changing the store's sorters. For locally sorted stores, this will be just before the data items in the store's backing collection are sorted. More...
 
virtual ComponentListener?? BeforeSync [get]
 Called before a call to sync is executed. Return false from any listener to cancel the sync Parameters options : Object Hash of all records to be synchronized, broken down into create, update and destroy More...
 
virtual ComponentListener?? Clear [get]
 Fired after the removeAll method is called. Parameters store : Ext.data.Store More...
 
virtual ComponentListener?? DataChanged [get]
 Fires whenever the records in the Store have changed in some way - this could include adding or removing records, or updating the data in existing records Parameters store : Ext.data.Store More...
 
virtual ComponentListener?? Load [get]
 Fires whenever the store reads data from a remote data source. Parameters store : Ext.data.Store records : Array An array of records successful : Boolean True if the operation was successful. operation : Ext.data.operation.Read The Operation object that was used in the data load call More...
 
virtual ComponentListener?? Remove [get]
 Fired when a Model instance has been removed from this Store Parameters store : Ext.data.Store The Store object More...
 
virtual ComponentListener?? Sort [get]
 Fires after a store is sorted. For remotely sorted stores, this will be upon the success of a load operation triggered by changing the store's sorters. For locally sorted stores, this will be just after the data items in the store's backing collection are sorted. More...
 
virtual ComponentListener?? Update [get]
 Fires when a Record has been updated Parameters store : Store record : Ext.data.Model The Model instance that was updated More...
 
virtual ComponentListener?? Write [get]
 Fires whenever a successful write has been made via the configured Proxy Parameters store : Ext.data.Store This Store operation : Ext.data.Operation The Operation object that was used in the write More...
 
virtual ComponentListener?? EndUpdate [get]
 Fires when the endUpdate method is called. Automatic synchronization as configured by the autoSync flag is deferred until the endUpdate method is called, so multiple mutations can be coalesced into one synchronization operation. More...
 
virtual ComponentListener?? Exception [get]
 Fires when the server returns an exception Parameters proxy : Ext.data.proxy.Proxy response : Object The response from the AJAX request operation : Ext.data.Operation The operation that triggered request More...
 
virtual ComponentListener?? MetaChange [get]
 Fires when this store's underlying reader (available via the proxy) provides new metadata. Metadata usually consists of new field definitions, but can include any configuration data required by an application, and can be processed as needed in the event handler. This event is currently only fired for JsonReaders. More...
 
virtual ComponentListener?? Refresh [get]
 Fires when the data cache has changed in a bulk manner (e.g., it has been sorted, filtered, etc.) and a widget that is using this Store as a Record cache should refresh its view. More...
 
override ConfigOptionsCollection ConfigOptions [get]
 
- Properties inherited from Ext.Net.BaseItem
virtual string InstanceOf [get]
 
ItemState State [get]
 
virtual DefaultValueMode DefaultValueMode [get, set]
 
virtual bool DesignMode [get]
 
bool AutoDataBind [get, set]
 
ResourceManager ResourceManager [get]
 
virtual Control Owner [get, set]
 The Owner Control for this Listener. More...
 
virtual bool IsDefault [get]
 Does this object currently represent it's default state. More...
 
bool IsTrackingViewState [get]
 
EventHandlerList Events [get]
 
EventHandler DataBinding
 
Control?? BindingContainer [get]
 
virtual ConfigItemCollection?? CustomConfig [get]
 Collection of custom js config More...
 
virtual ConfigOptionsCollection ConfigOptions [get]
 
virtual ConfigOptionsExtraction ConfigOptionsExtraction [get]
 
System.Web.Mvc.HtmlHelper?? HtmlHelper [get, set]
 
- Properties inherited from Ext.Net.IXObject
ConfigOptionsCollection ConfigOptions [get]
 
ConfigOptionsExtraction ConfigOptionsExtraction [get]
 
DefaultValueMode DefaultValueMode [get, set]
 

Additional Inherited Members

- Public Member Functions inherited from Ext.Net.ComponentListeners
virtual void ClearListeners ()
 
- Public Member Functions inherited from Ext.Net.BaseItem
virtual bool HasExplicitValue (string name)
 
void EnsureDataBind ()
 
virtual void Call (string name)
 
virtual void Call (string name, params object[] args)
 
virtual void AddScript (string script)
 
virtual void AddScript (string script, params object[] args)
 
virtual bool IsEmptyObject ()
 
Apply< T > (IApply config)
 
BaseItem Apply (object config)
 
virtual void LoadViewState (object state)
 
virtual object SaveViewState ()
 
virtual void TrackViewState ()
 
void SetDirty ()
 
virtual void DataBind ()
 
virtual IControlBuilder ToNativeBuilder ()
 
- Protected Member Functions inherited from Ext.Net.BaseItem
 BaseItem (Control owner)
 
 BaseItem ()
 
virtual void OwnerUpdate (Control owner)
 
virtual void OnDataBinding (EventArgs e)
 

Detailed Description

Property Documentation

◆ Add

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Add
get

Fired when a Model instance has been added to this Store Parameters store : Ext.data.Store The store

records : Array The Model instances that were added

index : Number The index at which the instances were inserted

◆ BeforeLoad

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.BeforeLoad
get

Fires before a request is made for a new data object. If the beforeload handler returns false the load action will be canceled Parameters store : Ext.data.Store This Store

operation : Ext.data.Operation The Ext.data.Operation object that will be passed to the Proxy to load the Store

◆ BeforeSort

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.BeforeSort
get

Fires before a store is sorted. For remotely sorted stores, this will be just before the load operation triggered by changing the store's sorters. For locally sorted stores, this will be just before the data items in the store's backing collection are sorted.

Parameters: store : Ext.data.Store This Store

sorters : Ext.util.Sorter[] An array of sorters for locally sorted stores and undefined for remotely sorted stores.

◆ BeforeSync

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.BeforeSync
get

Called before a call to sync is executed. Return false from any listener to cancel the sync Parameters options : Object Hash of all records to be synchronized, broken down into create, update and destroy

◆ BeginUpdate

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.BeginUpdate
get

Fires when the beginUpdate method is called. Automatic synchronization as configured by the autoSync flag is deferred until the endUpdate method is called, so multiple mutations can be coalesced into one synchronization operation.

◆ Clear

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Clear
get

Fired after the removeAll method is called. Parameters store : Ext.data.Store

◆ ConfigOptions

override ConfigOptionsCollection Ext.Net.AbstractStoreListeners.ConfigOptions
get

◆ DataChanged

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.DataChanged
get

Fires whenever the records in the Store have changed in some way - this could include adding or removing records, or updating the data in existing records Parameters store : Ext.data.Store

◆ EndUpdate

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.EndUpdate
get

Fires when the endUpdate method is called. Automatic synchronization as configured by the autoSync flag is deferred until the endUpdate method is called, so multiple mutations can be coalesced into one synchronization operation.

◆ Exception

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Exception
get

Fires when the server returns an exception Parameters proxy : Ext.data.proxy.Proxy response : Object The response from the AJAX request operation : Ext.data.Operation The operation that triggered request

◆ Load

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Load
get

Fires whenever the store reads data from a remote data source. Parameters store : Ext.data.Store records : Array An array of records successful : Boolean True if the operation was successful. operation : Ext.data.operation.Read The Operation object that was used in the data load call

◆ MetaChange

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.MetaChange
get

Fires when this store's underlying reader (available via the proxy) provides new metadata. Metadata usually consists of new field definitions, but can include any configuration data required by an application, and can be processed as needed in the event handler. This event is currently only fired for JsonReaders.

Parameters store : Ext.data.Store meta : Object The JSON metadata

◆ Refresh

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Refresh
get

Fires when the data cache has changed in a bulk manner (e.g., it has been sorted, filtered, etc.) and a widget that is using this Store as a Record cache should refresh its view.

Parameters store : Ext.data.Store

◆ Remove

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Remove
get

Fired when a Model instance has been removed from this Store Parameters store : Ext.data.Store The Store object

record : Ext.data.Model The record that was removed

index : Number The index of the record that was removed

◆ Sort

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Sort
get

Fires after a store is sorted. For remotely sorted stores, this will be upon the success of a load operation triggered by changing the store's sorters. For locally sorted stores, this will be just after the data items in the store's backing collection are sorted.

Parameters: store : Ext.data.Store This Store

sorters : Ext.util.Sorter[] An array of sorters for locally sorted stores and undefined for remotely sorted stores.

◆ Update

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Update
get

Fires when a Record has been updated Parameters store : Store record : Ext.data.Model The Model instance that was updated

operation : String The update operation being performed. Value may be one of: Ext.data.Model.EDIT Ext.data.Model.REJECT Ext.data.Model.COMMIT

modifiedFieldNames : String[] Array of field names changed during edit.

◆ Write

virtual ComponentListener?? Ext.Net.AbstractStoreListeners.Write
get

Fires whenever a successful write has been made via the configured Proxy Parameters store : Ext.data.Store This Store operation : Ext.data.Operation The Operation object that was used in the write


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