X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/src/data/DirectStore.js diff --git a/src/data/DirectStore.js b/src/data/DirectStore.js index 748cfff0..8acb7540 100644 --- a/src/data/DirectStore.js +++ b/src/data/DirectStore.js @@ -1,52 +1,61 @@ -/*! - * Ext JS Library 3.0.3 - * 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.proxy.Direct} and {@link Ext.data.reader.Json} 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:

+ *
+ * + * @constructor + * @param {Object} config */ -/** - * @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); + +Ext.define('Ext.data.DirectStore', { + /* Begin Definitions */ + + extend: 'Ext.data.Store', + + alias: 'store.direct', + + requires: ['Ext.data.proxy.Direct'], + + /* End Definitions */ + + constructor : function(config){ + config = Ext.apply({}, config); + if (!config.proxy) { + var proxy = { + type: 'direct', + reader: { + type: 'json' + } + }; + Ext.copyTo(proxy, config, 'paramOrder,paramsAsHash,directFn,api,simpleSortMode'); + Ext.copyTo(proxy.reader, config, 'totalProperty,root,idProperty'); + config.proxy = proxy; + } + this.callParent([config]); + } +});