X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/src/data/DirectStore.js diff --git a/src/data/DirectStore.js b/src/data/DirectStore.js new file mode 100644 index 00000000..8efaafc6 --- /dev/null +++ b/src/data/DirectStore.js @@ -0,0 +1,52 @@ +/*! + * Ext JS Library 3.0.0 + * Copyright(c) 2006-2009 Ext JS, LLC + * licensing@extjs.com + * http://www.extjs.com/license + */ +/** + * @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);