Package: | Ext.data |
Class: | DataProxy |
Extends: | Object |
Defined In: | DataProxy.js |
DataProxy implementations are usually used in conjunction with an implementation of Ext.data.DataReader
(of the appropriate type which knows how to parse the data object) to provide a block of
Ext.data.Records to an Ext.data.Store.
Custom implementations must implement the load method as described in Ext.data.HttpProxy.load.
Event | Defined By | |
---|---|---|
beforeload : ( Object This , Object params ) |
DataProxy | |
Fires before a network request is made to retrieve a data object. | ||
load : ( Object This , Object o , Object arg ) |
DataProxy | |
Fires before the load method's callback is called. | ||
loadexception : ( Object This , Object o , Object arg , Object e ) |
DataProxy | |
Fires if an Exception occurs during data retrieval. |
public event beforeload
This
: Objectparams
: Objectpublic event load
This
: Objecto
: Objectarg
: Objectpublic event loadexception
This
: Objecto
: Objectarg
: Objecte
: Object