com.gwtext.client.data |
|
Java Source File Name | Type | Comment |
ArrayReader.java | Class | Data reader class that is setup to consume data from an array data source. |
BooleanFieldDef.java | Class | Field that represents boolean data. |
Converter.java | Interface | Converter that can be used to format the incoming data before processing it by the
Reader . |
DataProxy.java | Class | This class is an abstract base class for implementations which provide retrieval of unformatted data objects. |
DateFieldDef.java | Class | Date field class. |
FieldDef.java | Class | Base abstract FieldDef class. |
FloatFieldDef.java | Class | Field that represents float data. |
GroupingStore.java | Class | A specialized store implementation that provides for grouping records by one of the available fields. |
HttpProxy.java | Class | An implementation of
DataProxy that reads a data object from the specified URL. |
HttpStoreLoadException.java | Class | An HTTP specific
com.gwtext.client.data.StoreLoadException that is raised when using
the
HttpProxy . |
IntegerFieldDef.java | Class | Field that represents integer data. |
JsonReader.java | Class | Data reader class to create an Array of Ext.data.Record objects from a JSON response
based on mappings in a provided Ext.data.Record constructor. |
JsonStore.java | Class | Small helper class to make creating Stores for JSON data easier. |
MemoryProxy.java | Class | An implementation of DataProxy that simply passes the data specified in its constructor to the Reader when its load method is called. |
Node.java | Class | A data Node class. |
NodeTraversalCallback.java | Interface | The node traversal callback itnerface used by several Node methods. |
ObjectFieldDef.java | Class | Field that represents String data. |
Reader.java | Class | Base abstract reader class. |
Record.java | Class | Instances of this class encapsulate both record definition information, and record value information for use in Store objects,
or any code which needs to access Records cached in a Store object. |
RecordDef.java | Class | A record definition where the fields in the source data of a
Reader are declared. |
ScriptTagProxy.java | Class | An implementation of DataProxy that reads a data object from a URL which may be in a domain other than the
originating domain of the running page.
Note that if you are retrieving data from a page that is in a domain that is NOT the same as the originating domain of
the running page, you must use this class, rather than
HttpProxy .
The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript source code that
is used as the source inside a <script> tag.
In order for the browser to process the returned data, the server must wrap the data object with a call to a callback
function, the name of which is passed as a parameter by the ScriptTagProxy. |
SimpleStore.java | Class | Convenience class that creates a Store directly using field names and local array data. |
SortState.java | Class | |
Store.java | Class | The Store class encapsulates a client side cache of
Record objects which provide input data for widgets such
as the
com.gwtext.client.widgets.grid.GridPanel , or the
com.gwtext.client.widgets.form.ComboBox .
A Store object uses an implementation of
DataProxy to access a data object unless you call loadData() directly
and pass in your data. |
StoreLoadException.java | Class | Exception raised when loading data into a Store. |
StoreMgr.java | Class | Manager class that allows retreival of Stores by ID. |
StoreQueryFunction.java | Interface | Store query function. |
StoreTraversalCallback.java | Interface | Store traversal callback. |
StringFieldDef.java | Class | Field that represents String data. |
Tree.java | Class | Represents a tree data structure and bubbles all the events for its nodes. |
XmlReader.java | Class | Data reader class to create an Array of
Record objects from an XML document based on mappings. |