X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/docs/source/DirectStore.html diff --git a/docs/source/DirectStore.html b/docs/source/DirectStore.html new file mode 100644 index 00000000..75933acd --- /dev/null +++ b/docs/source/DirectStore.html @@ -0,0 +1,56 @@ + + + The source code + + + + +
/** + * @class Ext.data.DirectStore + * @extends Ext.data.Store + *

Small helper class to create an {@link Ext.data.Store} configured with an + * {@link Ext.data.DirectProxy} and {@link Ext.data.JsonReader} to make interacting + * with an {@link Ext.Direct} Server-side {@link Ext.direct.Provider Provider} easier. + * To create a different proxy/reader combination create a basic {@link Ext.data.Store} + * configured as needed.

+ * + *

*Note: Although they are not listed, this class inherits all of the config options of:

+ *
+ * + * @xtype directstore + * + * @constructor + * @param {Object} config + */ +Ext.data.DirectStore = function(c){ + // each transaction upon a singe record will generatie a distinct Direct transaction since Direct queues them into one Ajax request. + c.batchTransactions = false; + + Ext.data.DirectStore.superclass.constructor.call(this, Ext.apply(c, { + proxy: (typeof(c.proxy) == 'undefined') ? new Ext.data.DirectProxy(Ext.copyTo({}, c, 'paramOrder,paramsAsHash,directFn,api')) : c.proxy, + reader: (typeof(c.reader) == 'undefined' && typeof(c.fields) == 'object') ? new Ext.data.JsonReader(Ext.copyTo({}, c, 'totalProperty,root,idProperty'), c.fields) : c.reader + })); +}; +Ext.extend(Ext.data.DirectStore, Ext.data.Store, {}); +Ext.reg('directstore', Ext.data.DirectStore); +
+ + \ No newline at end of file