Upgrade to ExtJS 3.2.2 - Released 06/02/2010
[extjs.git] / src / data / Store.js
1 /*!
2  * Ext JS Library 3.2.2
3  * Copyright(c) 2006-2010 Ext JS, Inc.
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8  * @class Ext.data.Store
9  * @extends Ext.util.Observable
10  * <p>The Store class encapsulates a client side cache of {@link Ext.data.Record Record}
11  * objects which provide input data for Components such as the {@link Ext.grid.GridPanel GridPanel},
12  * the {@link Ext.form.ComboBox ComboBox}, or the {@link Ext.DataView DataView}.</p>
13  * <p><u>Retrieving Data</u></p>
14  * <p>A Store object may access a data object using:<div class="mdetail-params"><ul>
15  * <li>{@link #proxy configured implementation} of {@link Ext.data.DataProxy DataProxy}</li>
16  * <li>{@link #data} to automatically pass in data</li>
17  * <li>{@link #loadData} to manually pass in data</li>
18  * </ul></div></p>
19  * <p><u>Reading Data</u></p>
20  * <p>A Store object has no inherent knowledge of the format of the data object (it could be
21  * an Array, XML, or JSON). A Store object uses an appropriate {@link #reader configured implementation}
22  * of a {@link Ext.data.DataReader DataReader} to create {@link Ext.data.Record Record} instances from the data
23  * object.</p>
24  * <p><u>Store Types</u></p>
25  * <p>There are several implementations of Store available which are customized for use with
26  * a specific DataReader implementation.  Here is an example using an ArrayStore which implicitly
27  * creates a reader commensurate to an Array data object.</p>
28  * <pre><code>
29 var myStore = new Ext.data.ArrayStore({
30     fields: ['fullname', 'first'],
31     idIndex: 0 // id for each record will be the first element
32 });
33  * </code></pre>
34  * <p>For custom implementations create a basic {@link Ext.data.Store} configured as needed:</p>
35  * <pre><code>
36 // create a {@link Ext.data.Record Record} constructor:
37 var rt = Ext.data.Record.create([
38     {name: 'fullname'},
39     {name: 'first'}
40 ]);
41 var myStore = new Ext.data.Store({
42     // explicitly create reader
43     reader: new Ext.data.ArrayReader(
44         {
45             idIndex: 0  // id for each record will be the first element
46         },
47         rt // recordType
48     )
49 });
50  * </code></pre>
51  * <p>Load some data into store (note the data object is an array which corresponds to the reader):</p>
52  * <pre><code>
53 var myData = [
54     [1, 'Fred Flintstone', 'Fred'],  // note that id for the record is the first element
55     [2, 'Barney Rubble', 'Barney']
56 ];
57 myStore.loadData(myData);
58  * </code></pre>
59  * <p>Records are cached and made available through accessor functions.  An example of adding
60  * a record to the store:</p>
61  * <pre><code>
62 var defaultData = {
63     fullname: 'Full Name',
64     first: 'First Name'
65 };
66 var recId = 100; // provide unique id for the record
67 var r = new myStore.recordType(defaultData, ++recId); // create new record
68 myStore.{@link #insert}(0, r); // insert a new record into the store (also see {@link #add})
69  * </code></pre>
70  * <p><u>Writing Data</u></p>
71  * <p>And <b>new in Ext version 3</b>, use the new {@link Ext.data.DataWriter DataWriter} to create an automated, <a href="http://extjs.com/deploy/dev/examples/writer/writer.html">Writable Store</a>
72  * along with <a href="http://extjs.com/deploy/dev/examples/restful/restful.html">RESTful features.</a>
73  * @constructor
74  * Creates a new Store.
75  * @param {Object} config A config object containing the objects needed for the Store to access data,
76  * and read the data into Records.
77  * @xtype store
78  */
79 Ext.data.Store = Ext.extend(Ext.util.Observable, {
80     /**
81      * @cfg {String} storeId If passed, the id to use to register with the <b>{@link Ext.StoreMgr StoreMgr}</b>.
82      * <p><b>Note</b>: if a (deprecated) <tt>{@link #id}</tt> is specified it will supersede the <tt>storeId</tt>
83      * assignment.</p>
84      */
85     /**
86      * @cfg {String} url If a <tt>{@link #proxy}</tt> is not specified the <tt>url</tt> will be used to
87      * implicitly configure a {@link Ext.data.HttpProxy HttpProxy} if an <tt>url</tt> is specified.
88      * Typically this option, or the <code>{@link #data}</code> option will be specified.
89      */
90     /**
91      * @cfg {Boolean/Object} autoLoad If <tt>{@link #data}</tt> is not specified, and if <tt>autoLoad</tt>
92      * is <tt>true</tt> or an <tt>Object</tt>, this store's {@link #load} method is automatically called
93      * after creation. If the value of <tt>autoLoad</tt> is an <tt>Object</tt>, this <tt>Object</tt> will
94      * be passed to the store's {@link #load} method.
95      */
96     /**
97      * @cfg {Ext.data.DataProxy} proxy The {@link Ext.data.DataProxy DataProxy} object which provides
98      * access to a data object.  See <code>{@link #url}</code>.
99      */
100     /**
101      * @cfg {Array} data An inline data object readable by the <code>{@link #reader}</code>.
102      * Typically this option, or the <code>{@link #url}</code> option will be specified.
103      */
104     /**
105      * @cfg {Ext.data.DataReader} reader The {@link Ext.data.DataReader Reader} object which processes the
106      * data object and returns an Array of {@link Ext.data.Record} objects which are cached keyed by their
107      * <b><tt>{@link Ext.data.Record#id id}</tt></b> property.
108      */
109     /**
110      * @cfg {Ext.data.DataWriter} writer
111      * <p>The {@link Ext.data.DataWriter Writer} object which processes a record object for being written
112      * to the server-side database.</p>
113      * <br><p>When a writer is installed into a Store the {@link #add}, {@link #remove}, and {@link #update}
114      * events on the store are monitored in order to remotely {@link #createRecords create records},
115      * {@link #destroyRecord destroy records}, or {@link #updateRecord update records}.</p>
116      * <br><p>The proxy for this store will relay any {@link #writexception} events to this store.</p>
117      * <br><p>Sample implementation:
118      * <pre><code>
119 var writer = new {@link Ext.data.JsonWriter}({
120     encode: true,
121     writeAllFields: true // write all fields, not just those that changed
122 });
123
124 // Typical Store collecting the Proxy, Reader and Writer together.
125 var store = new Ext.data.Store({
126     storeId: 'user',
127     root: 'records',
128     proxy: proxy,
129     reader: reader,
130     writer: writer,     // <-- plug a DataWriter into the store just as you would a Reader
131     paramsAsHash: true,
132     autoSave: false    // <-- false to delay executing create, update, destroy requests
133                         //     until specifically told to do so.
134 });
135      * </code></pre></p>
136      */
137     writer : undefined,
138     /**
139      * @cfg {Object} baseParams
140      * <p>An object containing properties which are to be sent as parameters
141      * for <i>every</i> HTTP request.</p>
142      * <p>Parameters are encoded as standard HTTP parameters using {@link Ext#urlEncode}.</p>
143      * <p><b>Note</b>: <code>baseParams</code> may be superseded by any <code>params</code>
144      * specified in a <code>{@link #load}</code> request, see <code>{@link #load}</code>
145      * for more details.</p>
146      * This property may be modified after creation using the <code>{@link #setBaseParam}</code>
147      * method.
148      * @property
149      */
150     /**
151      * @cfg {Object} sortInfo A config object to specify the sort order in the request of a Store's
152      * {@link #load} operation.  Note that for local sorting, the <tt>direction</tt> property is
153      * case-sensitive. See also {@link #remoteSort} and {@link #paramNames}.
154      * For example:<pre><code>
155 sortInfo: {
156     field: 'fieldName',
157     direction: 'ASC' // or 'DESC' (case sensitive for local sorting)
158 }
159 </code></pre>
160      */
161     /**
162      * @cfg {boolean} remoteSort <tt>true</tt> if sorting is to be handled by requesting the <tt>{@link #proxy Proxy}</tt>
163      * to provide a refreshed version of the data object in sorted order, as opposed to sorting the Record cache
164      * in place (defaults to <tt>false</tt>).
165      * <p>If <tt>remoteSort</tt> is <tt>true</tt>, then clicking on a {@link Ext.grid.Column Grid Column}'s
166      * {@link Ext.grid.Column#header header} causes the current page to be requested from the server appending
167      * the following two parameters to the <b><tt>{@link #load params}</tt></b>:<div class="mdetail-params"><ul>
168      * <li><b><tt>sort</tt></b> : String<p class="sub-desc">The <tt>name</tt> (as specified in the Record's
169      * {@link Ext.data.Field Field definition}) of the field to sort on.</p></li>
170      * <li><b><tt>dir</tt></b> : String<p class="sub-desc">The direction of the sort, 'ASC' or 'DESC' (case-sensitive).</p></li>
171      * </ul></div></p>
172      */
173     remoteSort : false,
174
175     /**
176      * @cfg {Boolean} autoDestroy <tt>true</tt> to destroy the store when the component the store is bound
177      * to is destroyed (defaults to <tt>false</tt>).
178      * <p><b>Note</b>: this should be set to true when using stores that are bound to only 1 component.</p>
179      */
180     autoDestroy : false,
181
182     /**
183      * @cfg {Boolean} pruneModifiedRecords <tt>true</tt> to clear all modified record information each time
184      * the store is loaded or when a record is removed (defaults to <tt>false</tt>). See {@link #getModifiedRecords}
185      * for the accessor method to retrieve the modified records.
186      */
187     pruneModifiedRecords : false,
188
189     /**
190      * Contains the last options object used as the parameter to the {@link #load} method. See {@link #load}
191      * for the details of what this may contain. This may be useful for accessing any params which were used
192      * to load the current Record cache.
193      * @property
194      */
195     lastOptions : null,
196
197     /**
198      * @cfg {Boolean} autoSave
199      * <p>Defaults to <tt>true</tt> causing the store to automatically {@link #save} records to
200      * the server when a record is modified (ie: becomes 'dirty'). Specify <tt>false</tt> to manually call {@link #save}
201      * to send all modifiedRecords to the server.</p>
202      * <br><p><b>Note</b>: each CRUD action will be sent as a separate request.</p>
203      */
204     autoSave : true,
205
206     /**
207      * @cfg {Boolean} batch
208      * <p>Defaults to <tt>true</tt> (unless <code>{@link #restful}:true</code>). Multiple
209      * requests for each CRUD action (CREATE, READ, UPDATE and DESTROY) will be combined
210      * and sent as one transaction. Only applies when <code>{@link #autoSave}</code> is set
211      * to <tt>false</tt>.</p>
212      * <br><p>If Store is RESTful, the DataProxy is also RESTful, and a unique transaction is
213      * generated for each record.</p>
214      */
215     batch : true,
216
217     /**
218      * @cfg {Boolean} restful
219      * Defaults to <tt>false</tt>.  Set to <tt>true</tt> to have the Store and the set
220      * Proxy operate in a RESTful manner. The store will automatically generate GET, POST,
221      * PUT and DELETE requests to the server. The HTTP method used for any given CRUD
222      * action is described in {@link Ext.data.Api#restActions}.  For additional information
223      * see {@link Ext.data.DataProxy#restful}.
224      * <p><b>Note</b>: if <code>{@link #restful}:true</code> <code>batch</code> will
225      * internally be set to <tt>false</tt>.</p>
226      */
227     restful: false,
228
229     /**
230      * @cfg {Object} paramNames
231      * <p>An object containing properties which specify the names of the paging and
232      * sorting parameters passed to remote servers when loading blocks of data. By default, this
233      * object takes the following form:</p><pre><code>
234 {
235     start : 'start',  // The parameter name which specifies the start row
236     limit : 'limit',  // The parameter name which specifies number of rows to return
237     sort : 'sort',    // The parameter name which specifies the column to sort on
238     dir : 'dir'       // The parameter name which specifies the sort direction
239 }
240 </code></pre>
241      * <p>The server must produce the requested data block upon receipt of these parameter names.
242      * If different parameter names are required, this property can be overriden using a configuration
243      * property.</p>
244      * <p>A {@link Ext.PagingToolbar PagingToolbar} bound to this Store uses this property to determine
245      * the parameter names to use in its {@link #load requests}.
246      */
247     paramNames : undefined,
248
249     /**
250      * @cfg {Object} defaultParamNames
251      * Provides the default values for the {@link #paramNames} property. To globally modify the parameters
252      * for all stores, this object should be changed on the store prototype.
253      */
254     defaultParamNames : {
255         start : 'start',
256         limit : 'limit',
257         sort : 'sort',
258         dir : 'dir'
259     },
260
261     /**
262      * @property {Boolean} isDestroyed
263      * True if the store has been destroyed already. Read only
264      */
265     isDestroyed: false,
266
267     /**
268      * @property {Boolean} hasMultiSort
269      * True if this store is currently sorted by more than one field/direction combination.
270      */
271     hasMultiSort: false,
272
273     // private
274     batchKey : '_ext_batch_',
275
276     constructor : function(config){
277         this.data = new Ext.util.MixedCollection(false);
278         this.data.getKey = function(o){
279             return o.id;
280         };
281
282
283         // temporary removed-records cache
284         this.removed = [];
285
286         if(config && config.data){
287             this.inlineData = config.data;
288             delete config.data;
289         }
290
291         Ext.apply(this, config);
292
293         /**
294          * See the <code>{@link #baseParams corresponding configuration option}</code>
295          * for a description of this property.
296          * To modify this property see <code>{@link #setBaseParam}</code>.
297          * @property
298          */
299         this.baseParams = Ext.isObject(this.baseParams) ? this.baseParams : {};
300
301         this.paramNames = Ext.applyIf(this.paramNames || {}, this.defaultParamNames);
302
303         if((this.url || this.api) && !this.proxy){
304             this.proxy = new Ext.data.HttpProxy({url: this.url, api: this.api});
305         }
306         // If Store is RESTful, so too is the DataProxy
307         if (this.restful === true && this.proxy) {
308             // When operating RESTfully, a unique transaction is generated for each record.
309             // TODO might want to allow implemention of faux REST where batch is possible using RESTful routes only.
310             this.batch = false;
311             Ext.data.Api.restify(this.proxy);
312         }
313
314         if(this.reader){ // reader passed
315             if(!this.recordType){
316                 this.recordType = this.reader.recordType;
317             }
318             if(this.reader.onMetaChange){
319                 this.reader.onMetaChange = this.reader.onMetaChange.createSequence(this.onMetaChange, this);
320             }
321             if (this.writer) { // writer passed
322                 if (this.writer instanceof(Ext.data.DataWriter) === false) {    // <-- config-object instead of instance.
323                     this.writer = this.buildWriter(this.writer);
324                 }
325                 this.writer.meta = this.reader.meta;
326                 this.pruneModifiedRecords = true;
327             }
328         }
329
330         /**
331          * The {@link Ext.data.Record Record} constructor as supplied to (or created by) the
332          * {@link Ext.data.DataReader Reader}. Read-only.
333          * <p>If the Reader was constructed by passing in an Array of {@link Ext.data.Field} definition objects,
334          * instead of a Record constructor, it will implicitly create a Record constructor from that Array (see
335          * {@link Ext.data.Record}.{@link Ext.data.Record#create create} for additional details).</p>
336          * <p>This property may be used to create new Records of the type held in this Store, for example:</p><pre><code>
337     // create the data store
338     var store = new Ext.data.ArrayStore({
339         autoDestroy: true,
340         fields: [
341            {name: 'company'},
342            {name: 'price', type: 'float'},
343            {name: 'change', type: 'float'},
344            {name: 'pctChange', type: 'float'},
345            {name: 'lastChange', type: 'date', dateFormat: 'n/j h:ia'}
346         ]
347     });
348     store.loadData(myData);
349
350     // create the Grid
351     var grid = new Ext.grid.EditorGridPanel({
352         store: store,
353         colModel: new Ext.grid.ColumnModel({
354             columns: [
355                 {id:'company', header: 'Company', width: 160, dataIndex: 'company'},
356                 {header: 'Price', renderer: 'usMoney', dataIndex: 'price'},
357                 {header: 'Change', renderer: change, dataIndex: 'change'},
358                 {header: '% Change', renderer: pctChange, dataIndex: 'pctChange'},
359                 {header: 'Last Updated', width: 85,
360                     renderer: Ext.util.Format.dateRenderer('m/d/Y'),
361                     dataIndex: 'lastChange'}
362             ],
363             defaults: {
364                 sortable: true,
365                 width: 75
366             }
367         }),
368         autoExpandColumn: 'company', // match the id specified in the column model
369         height:350,
370         width:600,
371         title:'Array Grid',
372         tbar: [{
373             text: 'Add Record',
374             handler : function(){
375                 var defaultData = {
376                     change: 0,
377                     company: 'New Company',
378                     lastChange: (new Date()).clearTime(),
379                     pctChange: 0,
380                     price: 10
381                 };
382                 var recId = 3; // provide unique id
383                 var p = new store.recordType(defaultData, recId); // create new record
384                 grid.stopEditing();
385                 store.{@link #insert}(0, p); // insert a new record into the store (also see {@link #add})
386                 grid.startEditing(0, 0);
387             }
388         }]
389     });
390          * </code></pre>
391          * @property recordType
392          * @type Function
393          */
394
395         if(this.recordType){
396             /**
397              * A {@link Ext.util.MixedCollection MixedCollection} containing the defined {@link Ext.data.Field Field}s
398              * for the {@link Ext.data.Record Records} stored in this Store. Read-only.
399              * @property fields
400              * @type Ext.util.MixedCollection
401              */
402             this.fields = this.recordType.prototype.fields;
403         }
404         this.modified = [];
405
406         this.addEvents(
407             /**
408              * @event datachanged
409              * Fires when the data cache has changed in a bulk manner (e.g., it has been sorted, filtered, etc.) and a
410              * widget that is using this Store as a Record cache should refresh its view.
411              * @param {Store} this
412              */
413             'datachanged',
414             /**
415              * @event metachange
416              * Fires when this store's reader provides new metadata (fields). This is currently only supported for JsonReaders.
417              * @param {Store} this
418              * @param {Object} meta The JSON metadata
419              */
420             'metachange',
421             /**
422              * @event add
423              * Fires when Records have been {@link #add}ed to the Store
424              * @param {Store} this
425              * @param {Ext.data.Record[]} records The array of Records added
426              * @param {Number} index The index at which the record(s) were added
427              */
428             'add',
429             /**
430              * @event remove
431              * Fires when a Record has been {@link #remove}d from the Store
432              * @param {Store} this
433              * @param {Ext.data.Record} record The Record that was removed
434              * @param {Number} index The index at which the record was removed
435              */
436             'remove',
437             /**
438              * @event update
439              * Fires when a Record has been updated
440              * @param {Store} this
441              * @param {Ext.data.Record} record The Record that was updated
442              * @param {String} operation The update operation being performed.  Value may be one of:
443              * <pre><code>
444      Ext.data.Record.EDIT
445      Ext.data.Record.REJECT
446      Ext.data.Record.COMMIT
447              * </code></pre>
448              */
449             'update',
450             /**
451              * @event clear
452              * Fires when the data cache has been cleared.
453              * @param {Store} this
454              * @param {Record[]} records The records that were cleared.
455              */
456             'clear',
457             /**
458              * @event exception
459              * <p>Fires if an exception occurs in the Proxy during a remote request.
460              * This event is relayed through the corresponding {@link Ext.data.DataProxy}.
461              * See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
462              * for additional details.
463              * @param {misc} misc See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#exception exception}
464              * for description.
465              */
466             'exception',
467             /**
468              * @event beforeload
469              * Fires before a request is made for a new data object.  If the beforeload handler returns
470              * <tt>false</tt> the {@link #load} action will be canceled.
471              * @param {Store} this
472              * @param {Object} options The loading options that were specified (see {@link #load} for details)
473              */
474             'beforeload',
475             /**
476              * @event load
477              * Fires after a new set of Records has been loaded.
478              * @param {Store} this
479              * @param {Ext.data.Record[]} records The Records that were loaded
480              * @param {Object} options The loading options that were specified (see {@link #load} for details)
481              */
482             'load',
483             /**
484              * @event loadexception
485              * <p>This event is <b>deprecated</b> in favor of the catch-all <b><code>{@link #exception}</code></b>
486              * event instead.</p>
487              * <p>This event is relayed through the corresponding {@link Ext.data.DataProxy}.
488              * See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#loadexception loadexception}
489              * for additional details.
490              * @param {misc} misc See {@link Ext.data.DataProxy}.{@link Ext.data.DataProxy#loadexception loadexception}
491              * for description.
492              */
493             'loadexception',
494             /**
495              * @event beforewrite
496              * @param {Ext.data.Store} store
497              * @param {String} action [Ext.data.Api.actions.create|update|destroy]
498              * @param {Record/Record[]} rs The Record(s) being written.
499              * @param {Object} options The loading options that were specified. Edit <code>options.params</code> to add Http parameters to the request.  (see {@link #save} for details)
500              * @param {Object} arg The callback's arg object passed to the {@link #request} function
501              */
502             'beforewrite',
503             /**
504              * @event write
505              * Fires if the server returns 200 after an Ext.data.Api.actions CRUD action.
506              * Success of the action is determined in the <code>result['successProperty']</code>property (<b>NOTE</b> for RESTful stores,
507              * a simple 20x response is sufficient for the actions "destroy" and "update".  The "create" action should should return 200 along with a database pk).
508              * @param {Ext.data.Store} store
509              * @param {String} action [Ext.data.Api.actions.create|update|destroy]
510              * @param {Object} result The 'data' picked-out out of the response for convenience.
511              * @param {Ext.Direct.Transaction} res
512              * @param {Record/Record[]} rs Store's records, the subject(s) of the write-action
513              */
514             'write',
515             /**
516              * @event beforesave
517              * Fires before a save action is called. A save encompasses destroying records, updating records and creating records.
518              * @param {Ext.data.Store} store
519              * @param {Object} data An object containing the data that is to be saved. The object will contain a key for each appropriate action,
520              * with an array of records for each action.
521              */
522             'beforesave',
523             /**
524              * @event save
525              * Fires after a save is completed. A save encompasses destroying records, updating records and creating records.
526              * @param {Ext.data.Store} store
527              * @param {Number} batch The identifier for the batch that was saved.
528              * @param {Object} data An object containing the data that is to be saved. The object will contain a key for each appropriate action,
529              * with an array of records for each action.
530              */
531             'save'
532
533         );
534
535         if(this.proxy){
536             // TODO remove deprecated loadexception with ext-3.0.1
537             this.relayEvents(this.proxy,  ['loadexception', 'exception']);
538         }
539         // With a writer set for the Store, we want to listen to add/remove events to remotely create/destroy records.
540         if (this.writer) {
541             this.on({
542                 scope: this,
543                 add: this.createRecords,
544                 remove: this.destroyRecord,
545                 update: this.updateRecord,
546                 clear: this.onClear
547             });
548         }
549
550         this.sortToggle = {};
551         if(this.sortField){
552             this.setDefaultSort(this.sortField, this.sortDir);
553         }else if(this.sortInfo){
554             this.setDefaultSort(this.sortInfo.field, this.sortInfo.direction);
555         }
556
557         Ext.data.Store.superclass.constructor.call(this);
558
559         if(this.id){
560             this.storeId = this.id;
561             delete this.id;
562         }
563         if(this.storeId){
564             Ext.StoreMgr.register(this);
565         }
566         if(this.inlineData){
567             this.loadData(this.inlineData);
568             delete this.inlineData;
569         }else if(this.autoLoad){
570             this.load.defer(10, this, [
571                 typeof this.autoLoad == 'object' ?
572                     this.autoLoad : undefined]);
573         }
574         // used internally to uniquely identify a batch
575         this.batchCounter = 0;
576         this.batches = {};
577     },
578
579     /**
580      * builds a DataWriter instance when Store constructor is provided with a writer config-object instead of an instace.
581      * @param {Object} config Writer configuration
582      * @return {Ext.data.DataWriter}
583      * @private
584      */
585     buildWriter : function(config) {
586         var klass = undefined,
587             type = (config.format || 'json').toLowerCase();
588         switch (type) {
589             case 'json':
590                 klass = Ext.data.JsonWriter;
591                 break;
592             case 'xml':
593                 klass = Ext.data.XmlWriter;
594                 break;
595             default:
596                 klass = Ext.data.JsonWriter;
597         }
598         return new klass(config);
599     },
600
601     /**
602      * Destroys the store.
603      */
604     destroy : function(){
605         if(!this.isDestroyed){
606             if(this.storeId){
607                 Ext.StoreMgr.unregister(this);
608             }
609             this.clearData();
610             this.data = null;
611             Ext.destroy(this.proxy);
612             this.reader = this.writer = null;
613             this.purgeListeners();
614             this.isDestroyed = true;
615         }
616     },
617
618     /**
619      * Add Records to the Store and fires the {@link #add} event.  To add Records
620      * to the store from a remote source use <code>{@link #load}({add:true})</code>.
621      * See also <code>{@link #recordType}</code> and <code>{@link #insert}</code>.
622      * @param {Ext.data.Record[]} records An Array of Ext.data.Record objects
623      * to add to the cache. See {@link #recordType}.
624      */
625     add : function(records){
626         records = [].concat(records);
627         if(records.length < 1){
628             return;
629         }
630         for(var i = 0, len = records.length; i < len; i++){
631             records[i].join(this);
632         }
633         var index = this.data.length;
634         this.data.addAll(records);
635         if(this.snapshot){
636             this.snapshot.addAll(records);
637         }
638         this.fireEvent('add', this, records, index);
639     },
640
641     /**
642      * (Local sort only) Inserts the passed Record into the Store at the index where it
643      * should go based on the current sort information.
644      * @param {Ext.data.Record} record
645      */
646     addSorted : function(record){
647         var index = this.findInsertIndex(record);
648         this.insert(index, record);
649     },
650
651     /**
652      * Remove Records from the Store and fires the {@link #remove} event.
653      * @param {Ext.data.Record/Ext.data.Record[]} record The record object or array of records to remove from the cache.
654      */
655     remove : function(record){
656         if(Ext.isArray(record)){
657             Ext.each(record, function(r){
658                 this.remove(r);
659             }, this);
660             return;
661         }
662         var index = this.data.indexOf(record);
663         if(index > -1){
664             record.join(null);
665             this.data.removeAt(index);
666         }
667         if(this.pruneModifiedRecords){
668             this.modified.remove(record);
669         }
670         if(this.snapshot){
671             this.snapshot.remove(record);
672         }
673         if(index > -1){
674             this.fireEvent('remove', this, record, index);
675         }
676     },
677
678     /**
679      * Remove a Record from the Store at the specified index. Fires the {@link #remove} event.
680      * @param {Number} index The index of the record to remove.
681      */
682     removeAt : function(index){
683         this.remove(this.getAt(index));
684     },
685
686     /**
687      * Remove all Records from the Store and fires the {@link #clear} event.
688      * @param {Boolean} silent [false] Defaults to <tt>false</tt>.  Set <tt>true</tt> to not fire clear event.
689      */
690     removeAll : function(silent){
691         var items = [];
692         this.each(function(rec){
693             items.push(rec);
694         });
695         this.clearData();
696         if(this.snapshot){
697             this.snapshot.clear();
698         }
699         if(this.pruneModifiedRecords){
700             this.modified = [];
701         }
702         if (silent !== true) {  // <-- prevents write-actions when we just want to clear a store.
703             this.fireEvent('clear', this, items);
704         }
705     },
706
707     // private
708     onClear: function(store, records){
709         Ext.each(records, function(rec, index){
710             this.destroyRecord(this, rec, index);
711         }, this);
712     },
713
714     /**
715      * Inserts Records into the Store at the given index and fires the {@link #add} event.
716      * See also <code>{@link #add}</code> and <code>{@link #addSorted}</code>.
717      * @param {Number} index The start index at which to insert the passed Records.
718      * @param {Ext.data.Record[]} records An Array of Ext.data.Record objects to add to the cache.
719      */
720     insert : function(index, records){
721         records = [].concat(records);
722         for(var i = 0, len = records.length; i < len; i++){
723             this.data.insert(index, records[i]);
724             records[i].join(this);
725         }
726         if(this.snapshot){
727             this.snapshot.addAll(records);
728         }
729         this.fireEvent('add', this, records, index);
730     },
731
732     /**
733      * Get the index within the cache of the passed Record.
734      * @param {Ext.data.Record} record The Ext.data.Record object to find.
735      * @return {Number} The index of the passed Record. Returns -1 if not found.
736      */
737     indexOf : function(record){
738         return this.data.indexOf(record);
739     },
740
741     /**
742      * Get the index within the cache of the Record with the passed id.
743      * @param {String} id The id of the Record to find.
744      * @return {Number} The index of the Record. Returns -1 if not found.
745      */
746     indexOfId : function(id){
747         return this.data.indexOfKey(id);
748     },
749
750     /**
751      * Get the Record with the specified id.
752      * @param {String} id The id of the Record to find.
753      * @return {Ext.data.Record} The Record with the passed id. Returns undefined if not found.
754      */
755     getById : function(id){
756         return (this.snapshot || this.data).key(id);
757     },
758
759     /**
760      * Get the Record at the specified index.
761      * @param {Number} index The index of the Record to find.
762      * @return {Ext.data.Record} The Record at the passed index. Returns undefined if not found.
763      */
764     getAt : function(index){
765         return this.data.itemAt(index);
766     },
767
768     /**
769      * Returns a range of Records between specified indices.
770      * @param {Number} startIndex (optional) The starting index (defaults to 0)
771      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
772      * @return {Ext.data.Record[]} An array of Records
773      */
774     getRange : function(start, end){
775         return this.data.getRange(start, end);
776     },
777
778     // private
779     storeOptions : function(o){
780         o = Ext.apply({}, o);
781         delete o.callback;
782         delete o.scope;
783         this.lastOptions = o;
784     },
785
786     // private
787     clearData: function(){
788         this.data.each(function(rec) {
789             rec.join(null);
790         });
791         this.data.clear();
792     },
793
794     /**
795      * <p>Loads the Record cache from the configured <tt>{@link #proxy}</tt> using the configured <tt>{@link #reader}</tt>.</p>
796      * <br><p>Notes:</p><div class="mdetail-params"><ul>
797      * <li><b><u>Important</u></b>: loading is asynchronous! This call will return before the new data has been
798      * loaded. To perform any post-processing where information from the load call is required, specify
799      * the <tt>callback</tt> function to be called, or use a {@link Ext.util.Observable#listeners a 'load' event handler}.</li>
800      * <li>If using {@link Ext.PagingToolbar remote paging}, the first load call must specify the <tt>start</tt> and <tt>limit</tt>
801      * properties in the <code>options.params</code> property to establish the initial position within the
802      * dataset, and the number of Records to cache on each read from the Proxy.</li>
803      * <li>If using {@link #remoteSort remote sorting}, the configured <code>{@link #sortInfo}</code>
804      * will be automatically included with the posted parameters according to the specified
805      * <code>{@link #paramNames}</code>.</li>
806      * </ul></div>
807      * @param {Object} options An object containing properties which control loading options:<ul>
808      * <li><b><tt>params</tt></b> :Object<div class="sub-desc"><p>An object containing properties to pass as HTTP
809      * parameters to a remote data source. <b>Note</b>: <code>params</code> will override any
810      * <code>{@link #baseParams}</code> of the same name.</p>
811      * <p>Parameters are encoded as standard HTTP parameters using {@link Ext#urlEncode}.</p></div></li>
812      * <li><b>callback</b> : Function<div class="sub-desc"><p>A function to be called after the Records
813      * have been loaded. The callback is called after the load event is fired, and is passed the following arguments:<ul>
814      * <li>r : Ext.data.Record[] An Array of Records loaded.</li>
815      * <li>options : Options object from the load call.</li>
816      * <li>success : Boolean success indicator.</li></ul></p></div></li>
817      * <li><b>scope</b> : Object<div class="sub-desc"><p>Scope with which to call the callback (defaults
818      * to the Store object)</p></div></li>
819      * <li><b>add</b> : Boolean<div class="sub-desc"><p>Indicator to append loaded records rather than
820      * replace the current cache.  <b>Note</b>: see note for <tt>{@link #loadData}</tt></p></div></li>
821      * </ul>
822      * @return {Boolean} If the <i>developer</i> provided <tt>{@link #beforeload}</tt> event handler returns
823      * <tt>false</tt>, the load call will abort and will return <tt>false</tt>; otherwise will return <tt>true</tt>.
824      */
825     load : function(options) {
826         options = Ext.apply({}, options);
827         this.storeOptions(options);
828         if(this.sortInfo && this.remoteSort){
829             var pn = this.paramNames;
830             options.params = Ext.apply({}, options.params);
831             options.params[pn.sort] = this.sortInfo.field;
832             options.params[pn.dir] = this.sortInfo.direction;
833         }
834         try {
835             return this.execute('read', null, options); // <-- null represents rs.  No rs for load actions.
836         } catch(e) {
837             this.handleException(e);
838             return false;
839         }
840     },
841
842     /**
843      * updateRecord  Should not be used directly.  This method will be called automatically if a Writer is set.
844      * Listens to 'update' event.
845      * @param {Object} store
846      * @param {Object} record
847      * @param {Object} action
848      * @private
849      */
850     updateRecord : function(store, record, action) {
851         if (action == Ext.data.Record.EDIT && this.autoSave === true && (!record.phantom || (record.phantom && record.isValid()))) {
852             this.save();
853         }
854     },
855
856     /**
857      * Should not be used directly.  Store#add will call this automatically if a Writer is set
858      * @param {Object} store
859      * @param {Object} rs
860      * @param {Object} index
861      * @private
862      */
863     createRecords : function(store, rs, index) {
864         for (var i = 0, len = rs.length; i < len; i++) {
865             if (rs[i].phantom && rs[i].isValid()) {
866                 rs[i].markDirty();  // <-- Mark new records dirty
867                 this.modified.push(rs[i]);  // <-- add to modified
868             }
869         }
870         if (this.autoSave === true) {
871             this.save();
872         }
873     },
874
875     /**
876      * Destroys a Record.  Should not be used directly.  It's called by Store#remove if a Writer is set.
877      * @param {Store} store this
878      * @param {Ext.data.Record} record
879      * @param {Number} index
880      * @private
881      */
882     destroyRecord : function(store, record, index) {
883         if (this.modified.indexOf(record) != -1) {  // <-- handled already if @cfg pruneModifiedRecords == true
884             this.modified.remove(record);
885         }
886         if (!record.phantom) {
887             this.removed.push(record);
888
889             // since the record has already been removed from the store but the server request has not yet been executed,
890             // must keep track of the last known index this record existed.  If a server error occurs, the record can be
891             // put back into the store.  @see Store#createCallback where the record is returned when response status === false
892             record.lastIndex = index;
893
894             if (this.autoSave === true) {
895                 this.save();
896             }
897         }
898     },
899
900     /**
901      * This method should generally not be used directly.  This method is called internally
902      * by {@link #load}, or if a Writer is set will be called automatically when {@link #add},
903      * {@link #remove}, or {@link #update} events fire.
904      * @param {String} action Action name ('read', 'create', 'update', or 'destroy')
905      * @param {Record/Record[]} rs
906      * @param {Object} options
907      * @throws Error
908      * @private
909      */
910     execute : function(action, rs, options, /* private */ batch) {
911         // blow up if action not Ext.data.CREATE, READ, UPDATE, DESTROY
912         if (!Ext.data.Api.isAction(action)) {
913             throw new Ext.data.Api.Error('execute', action);
914         }
915         // make sure options has a fresh, new params hash
916         options = Ext.applyIf(options||{}, {
917             params: {}
918         });
919         if(batch !== undefined){
920             this.addToBatch(batch);
921         }
922         // have to separate before-events since load has a different signature than create,destroy and save events since load does not
923         // include the rs (record resultset) parameter.  Capture return values from the beforeaction into doRequest flag.
924         var doRequest = true;
925
926         if (action === 'read') {
927             doRequest = this.fireEvent('beforeload', this, options);
928             Ext.applyIf(options.params, this.baseParams);
929         }
930         else {
931             // if Writer is configured as listful, force single-record rs to be [{}] instead of {}
932             // TODO Move listful rendering into DataWriter where the @cfg is defined.  Should be easy now.
933             if (this.writer.listful === true && this.restful !== true) {
934                 rs = (Ext.isArray(rs)) ? rs : [rs];
935             }
936             // if rs has just a single record, shift it off so that Writer writes data as '{}' rather than '[{}]'
937             else if (Ext.isArray(rs) && rs.length == 1) {
938                 rs = rs.shift();
939             }
940             // Write the action to options.params
941             if ((doRequest = this.fireEvent('beforewrite', this, action, rs, options)) !== false) {
942                 this.writer.apply(options.params, this.baseParams, action, rs);
943             }
944         }
945         if (doRequest !== false) {
946             // Send request to proxy.
947             if (this.writer && this.proxy.url && !this.proxy.restful && !Ext.data.Api.hasUniqueUrl(this.proxy, action)) {
948                 options.params.xaction = action;    // <-- really old, probaby unecessary.
949             }
950             // Note:  Up until this point we've been dealing with 'action' as a key from Ext.data.Api.actions.
951             // We'll flip it now and send the value into DataProxy#request, since it's the value which maps to
952             // the user's configured DataProxy#api
953             // TODO Refactor all Proxies to accept an instance of Ext.data.Request (not yet defined) instead of this looooooong list
954             // of params.  This method is an artifact from Ext2.
955             this.proxy.request(Ext.data.Api.actions[action], rs, options.params, this.reader, this.createCallback(action, rs, batch), this, options);
956         }
957         return doRequest;
958     },
959
960     /**
961      * Saves all pending changes to the store.  If the commensurate Ext.data.Api.actions action is not configured, then
962      * the configured <code>{@link #url}</code> will be used.
963      * <pre>
964      * change            url
965      * ---------------   --------------------
966      * removed records   Ext.data.Api.actions.destroy
967      * phantom records   Ext.data.Api.actions.create
968      * {@link #getModifiedRecords modified records}  Ext.data.Api.actions.update
969      * </pre>
970      * @TODO:  Create extensions of Error class and send associated Record with thrown exceptions.
971      * e.g.:  Ext.data.DataReader.Error or Ext.data.Error or Ext.data.DataProxy.Error, etc.
972      * @return {Number} batch Returns a number to uniquely identify the "batch" of saves occurring. -1 will be returned
973      * if there are no items to save or the save was cancelled.
974      */
975     save : function() {
976         if (!this.writer) {
977             throw new Ext.data.Store.Error('writer-undefined');
978         }
979
980         var queue = [],
981             len,
982             trans,
983             batch,
984             data = {};
985         // DESTROY:  First check for removed records.  Records in this.removed are guaranteed non-phantoms.  @see Store#remove
986         if(this.removed.length){
987             queue.push(['destroy', this.removed]);
988         }
989
990         // Check for modified records. Use a copy so Store#rejectChanges will work if server returns error.
991         var rs = [].concat(this.getModifiedRecords());
992         if(rs.length){
993             // CREATE:  Next check for phantoms within rs.  splice-off and execute create.
994             var phantoms = [];
995             for(var i = rs.length-1; i >= 0; i--){
996                 if(rs[i].phantom === true){
997                     var rec = rs.splice(i, 1).shift();
998                     if(rec.isValid()){
999                         phantoms.push(rec);
1000                     }
1001                 }else if(!rs[i].isValid()){ // <-- while we're here, splice-off any !isValid real records
1002                     rs.splice(i,1);
1003                 }
1004             }
1005             // If we have valid phantoms, create them...
1006             if(phantoms.length){
1007                 queue.push(['create', phantoms]);
1008             }
1009
1010             // UPDATE:  And finally, if we're still here after splicing-off phantoms and !isValid real records, update the rest...
1011             if(rs.length){
1012                 queue.push(['update', rs]);
1013             }
1014         }
1015         len = queue.length;
1016         if(len){
1017             batch = ++this.batchCounter;
1018             for(var i = 0; i < len; ++i){
1019                 trans = queue[i];
1020                 data[trans[0]] = trans[1];
1021             }
1022             if(this.fireEvent('beforesave', this, data) !== false){
1023                 for(var i = 0; i < len; ++i){
1024                     trans = queue[i];
1025                     this.doTransaction(trans[0], trans[1], batch);
1026                 }
1027                 return batch;
1028             }
1029         }
1030         return -1;
1031     },
1032
1033     // private.  Simply wraps call to Store#execute in try/catch.  Defers to Store#handleException on error.  Loops if batch: false
1034     doTransaction : function(action, rs, batch) {
1035         function transaction(records) {
1036             try{
1037                 this.execute(action, records, undefined, batch);
1038             }catch (e){
1039                 this.handleException(e);
1040             }
1041         }
1042         if(this.batch === false){
1043             for(var i = 0, len = rs.length; i < len; i++){
1044                 transaction.call(this, rs[i]);
1045             }
1046         }else{
1047             transaction.call(this, rs);
1048         }
1049     },
1050
1051     // private
1052     addToBatch : function(batch){
1053         var b = this.batches,
1054             key = this.batchKey + batch,
1055             o = b[key];
1056
1057         if(!o){
1058             b[key] = o = {
1059                 id: batch,
1060                 count: 0,
1061                 data: {}
1062             };
1063         }
1064         ++o.count;
1065     },
1066
1067     removeFromBatch : function(batch, action, data){
1068         var b = this.batches,
1069             key = this.batchKey + batch,
1070             o = b[key],
1071             data,
1072             arr;
1073
1074
1075         if(o){
1076             arr = o.data[action] || [];
1077             o.data[action] = arr.concat(data);
1078             if(o.count === 1){
1079                 data = o.data;
1080                 delete b[key];
1081                 this.fireEvent('save', this, batch, data);
1082             }else{
1083                 --o.count;
1084             }
1085         }
1086     },
1087
1088     // @private callback-handler for remote CRUD actions
1089     // Do not override -- override loadRecords, onCreateRecords, onDestroyRecords and onUpdateRecords instead.
1090     createCallback : function(action, rs, batch) {
1091         var actions = Ext.data.Api.actions;
1092         return (action == 'read') ? this.loadRecords : function(data, response, success) {
1093             // calls: onCreateRecords | onUpdateRecords | onDestroyRecords
1094             this['on' + Ext.util.Format.capitalize(action) + 'Records'](success, rs, [].concat(data));
1095             // If success === false here, exception will have been called in DataProxy
1096             if (success === true) {
1097                 this.fireEvent('write', this, action, data, response, rs);
1098             }
1099             this.removeFromBatch(batch, action, data);
1100         };
1101     },
1102
1103     // Clears records from modified array after an exception event.
1104     // NOTE:  records are left marked dirty.  Do we want to commit them even though they were not updated/realized?
1105     // TODO remove this method?
1106     clearModified : function(rs) {
1107         if (Ext.isArray(rs)) {
1108             for (var n=rs.length-1;n>=0;n--) {
1109                 this.modified.splice(this.modified.indexOf(rs[n]), 1);
1110             }
1111         } else {
1112             this.modified.splice(this.modified.indexOf(rs), 1);
1113         }
1114     },
1115
1116     // remap record ids in MixedCollection after records have been realized.  @see Store#onCreateRecords, @see DataReader#realize
1117     reMap : function(record) {
1118         if (Ext.isArray(record)) {
1119             for (var i = 0, len = record.length; i < len; i++) {
1120                 this.reMap(record[i]);
1121             }
1122         } else {
1123             delete this.data.map[record._phid];
1124             this.data.map[record.id] = record;
1125             var index = this.data.keys.indexOf(record._phid);
1126             this.data.keys.splice(index, 1, record.id);
1127             delete record._phid;
1128         }
1129     },
1130
1131     // @protected onCreateRecord proxy callback for create action
1132     onCreateRecords : function(success, rs, data) {
1133         if (success === true) {
1134             try {
1135                 this.reader.realize(rs, data);
1136                 this.reMap(rs);
1137             }
1138             catch (e) {
1139                 this.handleException(e);
1140                 if (Ext.isArray(rs)) {
1141                     // Recurse to run back into the try {}.  DataReader#realize splices-off the rs until empty.
1142                     this.onCreateRecords(success, rs, data);
1143                 }
1144             }
1145         }
1146     },
1147
1148     // @protected, onUpdateRecords proxy callback for update action
1149     onUpdateRecords : function(success, rs, data) {
1150         if (success === true) {
1151             try {
1152                 this.reader.update(rs, data);
1153             } catch (e) {
1154                 this.handleException(e);
1155                 if (Ext.isArray(rs)) {
1156                     // Recurse to run back into the try {}.  DataReader#update splices-off the rs until empty.
1157                     this.onUpdateRecords(success, rs, data);
1158                 }
1159             }
1160         }
1161     },
1162
1163     // @protected onDestroyRecords proxy callback for destroy action
1164     onDestroyRecords : function(success, rs, data) {
1165         // splice each rec out of this.removed
1166         rs = (rs instanceof Ext.data.Record) ? [rs] : [].concat(rs);
1167         for (var i=0,len=rs.length;i<len;i++) {
1168             this.removed.splice(this.removed.indexOf(rs[i]), 1);
1169         }
1170         if (success === false) {
1171             // put records back into store if remote destroy fails.
1172             // @TODO: Might want to let developer decide.
1173             for (i=rs.length-1;i>=0;i--) {
1174                 this.insert(rs[i].lastIndex, rs[i]);    // <-- lastIndex set in Store#destroyRecord
1175             }
1176         }
1177     },
1178
1179     // protected handleException.  Possibly temporary until Ext framework has an exception-handler.
1180     handleException : function(e) {
1181         // @see core/Error.js
1182         Ext.handleError(e);
1183     },
1184
1185     /**
1186      * <p>Reloads the Record cache from the configured Proxy using the configured
1187      * {@link Ext.data.Reader Reader} and the options from the last load operation
1188      * performed.</p>
1189      * <p><b>Note</b>: see the Important note in {@link #load}.</p>
1190      * @param {Object} options <p>(optional) An <tt>Object</tt> containing
1191      * {@link #load loading options} which may override the {@link #lastOptions options}
1192      * used in the last {@link #load} operation. See {@link #load} for details
1193      * (defaults to <tt>null</tt>, in which case the {@link #lastOptions} are
1194      * used).</p>
1195      * <br><p>To add new params to the existing params:</p><pre><code>
1196 lastOptions = myStore.lastOptions;
1197 Ext.apply(lastOptions.params, {
1198     myNewParam: true
1199 });
1200 myStore.reload(lastOptions);
1201      * </code></pre>
1202      */
1203     reload : function(options){
1204         this.load(Ext.applyIf(options||{}, this.lastOptions));
1205     },
1206
1207     // private
1208     // Called as a callback by the Reader during a load operation.
1209     loadRecords : function(o, options, success){
1210         if (this.isDestroyed === true) {
1211             return;
1212         }
1213         if(!o || success === false){
1214             if(success !== false){
1215                 this.fireEvent('load', this, [], options);
1216             }
1217             if(options.callback){
1218                 options.callback.call(options.scope || this, [], options, false, o);
1219             }
1220             return;
1221         }
1222         var r = o.records, t = o.totalRecords || r.length;
1223         if(!options || options.add !== true){
1224             if(this.pruneModifiedRecords){
1225                 this.modified = [];
1226             }
1227             for(var i = 0, len = r.length; i < len; i++){
1228                 r[i].join(this);
1229             }
1230             if(this.snapshot){
1231                 this.data = this.snapshot;
1232                 delete this.snapshot;
1233             }
1234             this.clearData();
1235             this.data.addAll(r);
1236             this.totalLength = t;
1237             this.applySort();
1238             this.fireEvent('datachanged', this);
1239         }else{
1240             this.totalLength = Math.max(t, this.data.length+r.length);
1241             this.add(r);
1242         }
1243         this.fireEvent('load', this, r, options);
1244         if(options.callback){
1245             options.callback.call(options.scope || this, r, options, true);
1246         }
1247     },
1248
1249     /**
1250      * Loads data from a passed data block and fires the {@link #load} event. A {@link Ext.data.Reader Reader}
1251      * which understands the format of the data must have been configured in the constructor.
1252      * @param {Object} data The data block from which to read the Records.  The format of the data expected
1253      * is dependent on the type of {@link Ext.data.Reader Reader} that is configured and should correspond to
1254      * that {@link Ext.data.Reader Reader}'s <tt>{@link Ext.data.Reader#readRecords}</tt> parameter.
1255      * @param {Boolean} append (Optional) <tt>true</tt> to append the new Records rather the default to replace
1256      * the existing cache.
1257      * <b>Note</b>: that Records in a Store are keyed by their {@link Ext.data.Record#id id}, so added Records
1258      * with ids which are already present in the Store will <i>replace</i> existing Records. Only Records with
1259      * new, unique ids will be added.
1260      */
1261     loadData : function(o, append){
1262         var r = this.reader.readRecords(o);
1263         this.loadRecords(r, {add: append}, true);
1264     },
1265
1266     /**
1267      * Gets the number of cached records.
1268      * <p>If using paging, this may not be the total size of the dataset. If the data object
1269      * used by the Reader contains the dataset size, then the {@link #getTotalCount} function returns
1270      * the dataset size.  <b>Note</b>: see the Important note in {@link #load}.</p>
1271      * @return {Number} The number of Records in the Store's cache.
1272      */
1273     getCount : function(){
1274         return this.data.length || 0;
1275     },
1276
1277     /**
1278      * Gets the total number of records in the dataset as returned by the server.
1279      * <p>If using paging, for this to be accurate, the data object used by the {@link #reader Reader}
1280      * must contain the dataset size. For remote data sources, the value for this property
1281      * (<tt>totalProperty</tt> for {@link Ext.data.JsonReader JsonReader},
1282      * <tt>totalRecords</tt> for {@link Ext.data.XmlReader XmlReader}) shall be returned by a query on the server.
1283      * <b>Note</b>: see the Important note in {@link #load}.</p>
1284      * @return {Number} The number of Records as specified in the data object passed to the Reader
1285      * by the Proxy.
1286      * <p><b>Note</b>: this value is not updated when changing the contents of the Store locally.</p>
1287      */
1288     getTotalCount : function(){
1289         return this.totalLength || 0;
1290     },
1291
1292     /**
1293      * Returns an object describing the current sort state of this Store.
1294      * @return {Object} The sort state of the Store. An object with two properties:<ul>
1295      * <li><b>field : String<p class="sub-desc">The name of the field by which the Records are sorted.</p></li>
1296      * <li><b>direction : String<p class="sub-desc">The sort order, 'ASC' or 'DESC' (case-sensitive).</p></li>
1297      * </ul>
1298      * See <tt>{@link #sortInfo}</tt> for additional details.
1299      */
1300     getSortState : function(){
1301         return this.sortInfo;
1302     },
1303
1304     /**
1305      * @private
1306      * Invokes sortData if we have sortInfo to sort on and are not sorting remotely
1307      */
1308     applySort : function(){
1309         if ((this.sortInfo || this.multiSortInfo) && !this.remoteSort) {
1310             this.sortData();
1311         }
1312     },
1313
1314     /**
1315      * @private
1316      * Performs the actual sorting of data. This checks to see if we currently have a multi sort or not. It applies
1317      * each sorter field/direction pair in turn by building an OR'ed master sorting function and running it against
1318      * the full dataset
1319      */
1320     sortData : function() {
1321         var sortInfo  = this.hasMultiSort ? this.multiSortInfo : this.sortInfo,
1322             direction = sortInfo.direction || "ASC",
1323             sorters   = sortInfo.sorters,
1324             sortFns   = [];
1325
1326         //if we just have a single sorter, pretend it's the first in an array
1327         if (!this.hasMultiSort) {
1328             sorters = [{direction: direction, field: sortInfo.field}];
1329         }
1330
1331         //create a sorter function for each sorter field/direction combo
1332         for (var i=0, j = sorters.length; i < j; i++) {
1333             sortFns.push(this.createSortFunction(sorters[i].field, sorters[i].direction));
1334         }
1335         
1336         if (sortFns.length == 0) {
1337             return;
1338         }
1339
1340         //the direction modifier is multiplied with the result of the sorting functions to provide overall sort direction
1341         //(as opposed to direction per field)
1342         var directionModifier = direction.toUpperCase() == "DESC" ? -1 : 1;
1343
1344         //create a function which ORs each sorter together to enable multi-sort
1345         var fn = function(r1, r2) {
1346           var result = sortFns[0].call(this, r1, r2);
1347
1348           //if we have more than one sorter, OR any additional sorter functions together
1349           if (sortFns.length > 1) {
1350               for (var i=1, j = sortFns.length; i < j; i++) {
1351                   result = result || sortFns[i].call(this, r1, r2);
1352               }
1353           }
1354
1355           return directionModifier * result;
1356         };
1357
1358         //sort the data
1359         this.data.sort(direction, fn);
1360         if (this.snapshot && this.snapshot != this.data) {
1361             this.snapshot.sort(direction, fn);
1362         }
1363     },
1364
1365     /**
1366      * @private
1367      * Creates and returns a function which sorts an array by the given field and direction
1368      * @param {String} field The field to create the sorter for
1369      * @param {String} direction The direction to sort by (defaults to "ASC")
1370      * @return {Function} A function which sorts by the field/direction combination provided
1371      */
1372     createSortFunction: function(field, direction) {
1373         direction = direction || "ASC";
1374         var directionModifier = direction.toUpperCase() == "DESC" ? -1 : 1;
1375
1376         var sortType = this.fields.get(field).sortType;
1377
1378         //create a comparison function. Takes 2 records, returns 1 if record 1 is greater,
1379         //-1 if record 2 is greater or 0 if they are equal
1380         return function(r1, r2) {
1381             var v1 = sortType(r1.data[field]),
1382                 v2 = sortType(r2.data[field]);
1383
1384             return directionModifier * (v1 > v2 ? 1 : (v1 < v2 ? -1 : 0));
1385         };
1386     },
1387
1388     /**
1389      * Sets the default sort column and order to be used by the next {@link #load} operation.
1390      * @param {String} fieldName The name of the field to sort by.
1391      * @param {String} dir (optional) The sort order, 'ASC' or 'DESC' (case-sensitive, defaults to <tt>'ASC'</tt>)
1392      */
1393     setDefaultSort : function(field, dir) {
1394         dir = dir ? dir.toUpperCase() : 'ASC';
1395         this.sortInfo = {field: field, direction: dir};
1396         this.sortToggle[field] = dir;
1397     },
1398
1399     /**
1400      * Sort the Records.
1401      * If remote sorting is used, the sort is performed on the server, and the cache is reloaded. If local
1402      * sorting is used, the cache is sorted internally. See also {@link #remoteSort} and {@link #paramNames}.
1403      * This function accepts two call signatures - pass in a field name as the first argument to sort on a single
1404      * field, or pass in an array of sort configuration objects to sort by multiple fields.
1405      * Single sort example:
1406      * store.sort('name', 'ASC');
1407      * Multi sort example:
1408      * store.sort([
1409      *   {
1410      *     field    : 'name',
1411      *     direction: 'ASC'
1412      *   },
1413      *   {
1414      *     field    : 'salary',
1415      *     direction: 'DESC'
1416      *   }
1417      * ], 'ASC');
1418      * In this second form, the sort configs are applied in order, with later sorters sorting within earlier sorters' results.
1419      * For example, if two records with the same name are present they will also be sorted by salary if given the sort configs
1420      * above. Any number of sort configs can be added.
1421      * @param {String/Array} fieldName The name of the field to sort by, or an array of ordered sort configs
1422      * @param {String} dir (optional) The sort order, 'ASC' or 'DESC' (case-sensitive, defaults to <tt>'ASC'</tt>)
1423      */
1424     sort : function(fieldName, dir) {
1425         if (Ext.isArray(arguments[0])) {
1426             return this.multiSort.call(this, fieldName, dir);
1427         } else {
1428             return this.singleSort(fieldName, dir);
1429         }
1430     },
1431
1432     /**
1433      * Sorts the store contents by a single field and direction. This is called internally by {@link sort} and would
1434      * not usually be called manually
1435      * @param {String} fieldName The name of the field to sort by.
1436      * @param {String} dir (optional) The sort order, 'ASC' or 'DESC' (case-sensitive, defaults to <tt>'ASC'</tt>)
1437      */
1438     singleSort: function(fieldName, dir) {
1439         var field = this.fields.get(fieldName);
1440         if (!field) return false;
1441
1442         var name       = field.name,
1443             sortInfo   = this.sortInfo || null,
1444             sortToggle = this.sortToggle ? this.sortToggle[name] : null;
1445
1446         if (!dir) {
1447             if (sortInfo && sortInfo.field == name) { // toggle sort dir
1448                 dir = (this.sortToggle[name] || 'ASC').toggle('ASC', 'DESC');
1449             } else {
1450                 dir = field.sortDir;
1451             }
1452         }
1453
1454         this.sortToggle[name] = dir;
1455         this.sortInfo = {field: name, direction: dir};
1456         this.hasMultiSort = false;
1457
1458         if (this.remoteSort) {
1459             if (!this.load(this.lastOptions)) {
1460                 if (sortToggle) {
1461                     this.sortToggle[name] = sortToggle;
1462                 }
1463                 if (sortInfo) {
1464                     this.sortInfo = sortInfo;
1465                 }
1466             }
1467         } else {
1468             this.applySort();
1469             this.fireEvent('datachanged', this);
1470         }
1471     },
1472
1473     /**
1474      * Sorts the contents of this store by multiple field/direction sorters. This is called internally by {@link sort}
1475      * and would not usually be called manually.
1476      * Multi sorting only currently applies to local datasets - multiple sort data is not currently sent to a proxy
1477      * if remoteSort is used.
1478      * @param {Array} sorters Array of sorter objects (field and direction)
1479      * @param {String} direction Overall direction to sort the ordered results by (defaults to "ASC")
1480      */
1481     multiSort: function(sorters, direction) {
1482         this.hasMultiSort = true;
1483         direction = direction || "ASC";
1484
1485         //toggle sort direction
1486         if (this.multiSortInfo && direction == this.multiSortInfo.direction) {
1487             direction = direction.toggle("ASC", "DESC");
1488         }
1489
1490         /**
1491          * Object containing overall sort direction and an ordered array of sorter configs used when sorting on multiple fields
1492          * @property multiSortInfo
1493          * @type Object
1494          */
1495         this.multiSortInfo = {
1496             sorters  : sorters,
1497             direction: direction
1498         };
1499         
1500         if (this.remoteSort) {
1501             this.singleSort(sorters[0].field, sorters[0].direction);
1502
1503         } else {
1504             this.applySort();
1505             this.fireEvent('datachanged', this);
1506         }
1507     },
1508
1509     /**
1510      * Calls the specified function for each of the {@link Ext.data.Record Records} in the cache.
1511      * @param {Function} fn The function to call. The {@link Ext.data.Record Record} is passed as the first parameter.
1512      * Returning <tt>false</tt> aborts and exits the iteration.
1513      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed.
1514      * Defaults to the current {@link Ext.data.Record Record} in the iteration.
1515      */
1516     each : function(fn, scope){
1517         this.data.each(fn, scope);
1518     },
1519
1520     /**
1521      * Gets all {@link Ext.data.Record records} modified since the last commit.  Modified records are
1522      * persisted across load operations (e.g., during paging). <b>Note</b>: deleted records are not
1523      * included.  See also <tt>{@link #pruneModifiedRecords}</tt> and
1524      * {@link Ext.data.Record}<tt>{@link Ext.data.Record#markDirty markDirty}.</tt>.
1525      * @return {Ext.data.Record[]} An array of {@link Ext.data.Record Records} containing outstanding
1526      * modifications.  To obtain modified fields within a modified record see
1527      *{@link Ext.data.Record}<tt>{@link Ext.data.Record#modified modified}.</tt>.
1528      */
1529     getModifiedRecords : function(){
1530         return this.modified;
1531     },
1532
1533     /**
1534      * Sums the value of <tt>property</tt> for each {@link Ext.data.Record record} between <tt>start</tt>
1535      * and <tt>end</tt> and returns the result.
1536      * @param {String} property A field in each record
1537      * @param {Number} start (optional) The record index to start at (defaults to <tt>0</tt>)
1538      * @param {Number} end (optional) The last record index to include (defaults to length - 1)
1539      * @return {Number} The sum
1540      */
1541     sum : function(property, start, end){
1542         var rs = this.data.items, v = 0;
1543         start = start || 0;
1544         end = (end || end === 0) ? end : rs.length-1;
1545
1546         for(var i = start; i <= end; i++){
1547             v += (rs[i].data[property] || 0);
1548         }
1549         return v;
1550     },
1551
1552     /**
1553      * @private
1554      * Returns a filter function used to test a the given property's value. Defers most of the work to
1555      * Ext.util.MixedCollection's createValueMatcher function
1556      * @param {String} property The property to create the filter function for
1557      * @param {String/RegExp} value The string/regex to compare the property value to
1558      * @param {Boolean} anyMatch True if we don't care if the filter value is not the full value (defaults to false)
1559      * @param {Boolean} caseSensitive True to create a case-sensitive regex (defaults to false)
1560      * @param {Boolean} exactMatch True to force exact match (^ and $ characters added to the regex). Defaults to false. Ignored if anyMatch is true.
1561      */
1562     createFilterFn : function(property, value, anyMatch, caseSensitive, exactMatch){
1563         if(Ext.isEmpty(value, false)){
1564             return false;
1565         }
1566         value = this.data.createValueMatcher(value, anyMatch, caseSensitive, exactMatch);
1567         return function(r) {
1568             return value.test(r.data[property]);
1569         };
1570     },
1571
1572     /**
1573      * @private
1574      * Given an array of filter functions (each with optional scope), constructs and returns a single function that returns
1575      * the result of all of the filters ANDed together
1576      * @param {Array} filters The array of filter objects (each object should contain an 'fn' and optional scope)
1577      * @return {Function} The multiple filter function
1578      */
1579     createMultipleFilterFn: function(filters) {
1580         return function(record) {
1581             var isMatch = true;
1582
1583             for (var i=0, j = filters.length; i < j; i++) {
1584                 var filter = filters[i],
1585                     fn     = filter.fn,
1586                     scope  = filter.scope;
1587
1588                 isMatch = isMatch && fn.call(scope, record);
1589             }
1590
1591             return isMatch;
1592         };
1593     },
1594
1595     /**
1596      * Filter the {@link Ext.data.Record records} by a specified property. Alternatively, pass an array of filter
1597      * options to filter by more than one property.
1598      * Single filter example:
1599      * store.filter('name', 'Ed', true, true); //finds all records containing the substring 'Ed'
1600      * Multiple filter example:
1601      * <pre><code>
1602      * store.filter([
1603      *   {
1604      *     property     : 'name',
1605      *     value        : 'Ed',
1606      *     anyMatch     : true, //optional, defaults to true
1607      *     caseSensitive: true  //optional, defaults to true
1608      *   },
1609      *
1610      *   //filter functions can also be passed
1611      *   {
1612      *     fn   : function(record) {
1613      *       return record.get('age') == 24
1614      *     },
1615      *     scope: this
1616      *   }
1617      * ]);
1618      * </code></pre>
1619      * @param {String|Array} field A field on your records, or an array containing multiple filter options
1620      * @param {String/RegExp} value Either a string that the field should begin with, or a RegExp to test
1621      * against the field.
1622      * @param {Boolean} anyMatch (optional) <tt>true</tt> to match any part not just the beginning
1623      * @param {Boolean} caseSensitive (optional) <tt>true</tt> for case sensitive comparison
1624      * @param {Boolean} exactMatch True to force exact match (^ and $ characters added to the regex). Defaults to false. Ignored if anyMatch is true.
1625      */
1626     filter : function(property, value, anyMatch, caseSensitive, exactMatch){
1627         //we can accept an array of filter objects, or a single filter object - normalize them here
1628         if (Ext.isObject(property)) {
1629             property = [property];
1630         }
1631
1632         if (Ext.isArray(property)) {
1633             var filters = [];
1634
1635             //normalize the filters passed into an array of filter functions
1636             for (var i=0, j = property.length; i < j; i++) {
1637                 var filter = property[i],
1638                     func   = filter.fn,
1639                     scope  = filter.scope || this;
1640
1641                 //if we weren't given a filter function, construct one now
1642                 if (!Ext.isFunction(func)) {
1643                     func = this.createFilterFn(filter.property, filter.value, filter.anyMatch, filter.caseSensitive, filter.exactMatch);
1644                 }
1645
1646                 filters.push({fn: func, scope: scope});
1647             }
1648
1649             var fn = this.createMultipleFilterFn(filters);
1650         } else {
1651             //classic single property filter
1652             var fn = this.createFilterFn(property, value, anyMatch, caseSensitive, exactMatch);
1653         }
1654
1655         return fn ? this.filterBy(fn) : this.clearFilter();
1656     },
1657
1658     /**
1659      * Filter by a function. The specified function will be called for each
1660      * Record in this Store. If the function returns <tt>true</tt> the Record is included,
1661      * otherwise it is filtered out.
1662      * @param {Function} fn The function to be called. It will be passed the following parameters:<ul>
1663      * <li><b>record</b> : Ext.data.Record<p class="sub-desc">The {@link Ext.data.Record record}
1664      * to test for filtering. Access field values using {@link Ext.data.Record#get}.</p></li>
1665      * <li><b>id</b> : Object<p class="sub-desc">The ID of the Record passed.</p></li>
1666      * </ul>
1667      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this Store.
1668      */
1669     filterBy : function(fn, scope){
1670         this.snapshot = this.snapshot || this.data;
1671         this.data = this.queryBy(fn, scope||this);
1672         this.fireEvent('datachanged', this);
1673     },
1674
1675     /**
1676      * Revert to a view of the Record cache with no filtering applied.
1677      * @param {Boolean} suppressEvent If <tt>true</tt> the filter is cleared silently without firing the
1678      * {@link #datachanged} event.
1679      */
1680     clearFilter : function(suppressEvent){
1681         if(this.isFiltered()){
1682             this.data = this.snapshot;
1683             delete this.snapshot;
1684             if(suppressEvent !== true){
1685                 this.fireEvent('datachanged', this);
1686             }
1687         }
1688     },
1689
1690     /**
1691      * Returns true if this store is currently filtered
1692      * @return {Boolean}
1693      */
1694     isFiltered : function(){
1695         return !!this.snapshot && this.snapshot != this.data;
1696     },
1697
1698     /**
1699      * Query the records by a specified property.
1700      * @param {String} field A field on your records
1701      * @param {String/RegExp} value Either a string that the field
1702      * should begin with, or a RegExp to test against the field.
1703      * @param {Boolean} anyMatch (optional) True to match any part not just the beginning
1704      * @param {Boolean} caseSensitive (optional) True for case sensitive comparison
1705      * @return {MixedCollection} Returns an Ext.util.MixedCollection of the matched records
1706      */
1707     query : function(property, value, anyMatch, caseSensitive){
1708         var fn = this.createFilterFn(property, value, anyMatch, caseSensitive);
1709         return fn ? this.queryBy(fn) : this.data.clone();
1710     },
1711
1712     /**
1713      * Query the cached records in this Store using a filtering function. The specified function
1714      * will be called with each record in this Store. If the function returns <tt>true</tt> the record is
1715      * included in the results.
1716      * @param {Function} fn The function to be called. It will be passed the following parameters:<ul>
1717      * <li><b>record</b> : Ext.data.Record<p class="sub-desc">The {@link Ext.data.Record record}
1718      * to test for filtering. Access field values using {@link Ext.data.Record#get}.</p></li>
1719      * <li><b>id</b> : Object<p class="sub-desc">The ID of the Record passed.</p></li>
1720      * </ul>
1721      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this Store.
1722      * @return {MixedCollection} Returns an Ext.util.MixedCollection of the matched records
1723      **/
1724     queryBy : function(fn, scope){
1725         var data = this.snapshot || this.data;
1726         return data.filterBy(fn, scope||this);
1727     },
1728
1729     /**
1730      * Finds the index of the first matching Record in this store by a specific field value.
1731      * @param {String} fieldName The name of the Record field to test.
1732      * @param {String/RegExp} value Either a string that the field value
1733      * should begin with, or a RegExp to test against the field.
1734      * @param {Number} startIndex (optional) The index to start searching at
1735      * @param {Boolean} anyMatch (optional) True to match any part of the string, not just the beginning
1736      * @param {Boolean} caseSensitive (optional) True for case sensitive comparison
1737      * @return {Number} The matched index or -1
1738      */
1739     find : function(property, value, start, anyMatch, caseSensitive){
1740         var fn = this.createFilterFn(property, value, anyMatch, caseSensitive);
1741         return fn ? this.data.findIndexBy(fn, null, start) : -1;
1742     },
1743
1744     /**
1745      * Finds the index of the first matching Record in this store by a specific field value.
1746      * @param {String} fieldName The name of the Record field to test.
1747      * @param {Mixed} value The value to match the field against.
1748      * @param {Number} startIndex (optional) The index to start searching at
1749      * @return {Number} The matched index or -1
1750      */
1751     findExact: function(property, value, start){
1752         return this.data.findIndexBy(function(rec){
1753             return rec.get(property) === value;
1754         }, this, start);
1755     },
1756
1757     /**
1758      * Find the index of the first matching Record in this Store by a function.
1759      * If the function returns <tt>true</tt> it is considered a match.
1760      * @param {Function} fn The function to be called. It will be passed the following parameters:<ul>
1761      * <li><b>record</b> : Ext.data.Record<p class="sub-desc">The {@link Ext.data.Record record}
1762      * to test for filtering. Access field values using {@link Ext.data.Record#get}.</p></li>
1763      * <li><b>id</b> : Object<p class="sub-desc">The ID of the Record passed.</p></li>
1764      * </ul>
1765      * @param {Object} scope (optional) The scope (<code>this</code> reference) in which the function is executed. Defaults to this Store.
1766      * @param {Number} startIndex (optional) The index to start searching at
1767      * @return {Number} The matched index or -1
1768      */
1769     findBy : function(fn, scope, start){
1770         return this.data.findIndexBy(fn, scope, start);
1771     },
1772
1773     /**
1774      * Collects unique values for a particular dataIndex from this store.
1775      * @param {String} dataIndex The property to collect
1776      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
1777      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
1778      * @return {Array} An array of the unique values
1779      **/
1780     collect : function(dataIndex, allowNull, bypassFilter){
1781         var d = (bypassFilter === true && this.snapshot) ?
1782                 this.snapshot.items : this.data.items;
1783         var v, sv, r = [], l = {};
1784         for(var i = 0, len = d.length; i < len; i++){
1785             v = d[i].data[dataIndex];
1786             sv = String(v);
1787             if((allowNull || !Ext.isEmpty(v)) && !l[sv]){
1788                 l[sv] = true;
1789                 r[r.length] = v;
1790             }
1791         }
1792         return r;
1793     },
1794
1795     // private
1796     afterEdit : function(record){
1797         if(this.modified.indexOf(record) == -1){
1798             this.modified.push(record);
1799         }
1800         this.fireEvent('update', this, record, Ext.data.Record.EDIT);
1801     },
1802
1803     // private
1804     afterReject : function(record){
1805         this.modified.remove(record);
1806         this.fireEvent('update', this, record, Ext.data.Record.REJECT);
1807     },
1808
1809     // private
1810     afterCommit : function(record){
1811         this.modified.remove(record);
1812         this.fireEvent('update', this, record, Ext.data.Record.COMMIT);
1813     },
1814
1815     /**
1816      * Commit all Records with {@link #getModifiedRecords outstanding changes}. To handle updates for changes,
1817      * subscribe to the Store's {@link #update update event}, and perform updating when the third parameter is
1818      * Ext.data.Record.COMMIT.
1819      */
1820     commitChanges : function(){
1821         var m = this.modified.slice(0);
1822         this.modified = [];
1823         for(var i = 0, len = m.length; i < len; i++){
1824             m[i].commit();
1825         }
1826     },
1827
1828     /**
1829      * {@link Ext.data.Record#reject Reject} outstanding changes on all {@link #getModifiedRecords modified records}.
1830      */
1831     rejectChanges : function(){
1832         var m = this.modified.slice(0);
1833         this.modified = [];
1834         for(var i = 0, len = m.length; i < len; i++){
1835             m[i].reject();
1836         }
1837         var m = this.removed.slice(0).reverse();
1838         this.removed = [];
1839         for(var i = 0, len = m.length; i < len; i++){
1840             this.insert(m[i].lastIndex||0, m[i]);
1841             m[i].reject();
1842         }
1843     },
1844
1845     // private
1846     onMetaChange : function(meta){
1847         this.recordType = this.reader.recordType;
1848         this.fields = this.recordType.prototype.fields;
1849         delete this.snapshot;
1850         if(this.reader.meta.sortInfo){
1851             this.sortInfo = this.reader.meta.sortInfo;
1852         }else if(this.sortInfo  && !this.fields.get(this.sortInfo.field)){
1853             delete this.sortInfo;
1854         }
1855         if(this.writer){
1856             this.writer.meta = this.reader.meta;
1857         }
1858         this.modified = [];
1859         this.fireEvent('metachange', this, this.reader.meta);
1860     },
1861
1862     // private
1863     findInsertIndex : function(record){
1864         this.suspendEvents();
1865         var data = this.data.clone();
1866         this.data.add(record);
1867         this.applySort();
1868         var index = this.data.indexOf(record);
1869         this.data = data;
1870         this.resumeEvents();
1871         return index;
1872     },
1873
1874     /**
1875      * Set the value for a property name in this store's {@link #baseParams}.  Usage:</p><pre><code>
1876 myStore.setBaseParam('foo', {bar:3});
1877 </code></pre>
1878      * @param {String} name Name of the property to assign
1879      * @param {Mixed} value Value to assign the <tt>name</tt>d property
1880      **/
1881     setBaseParam : function (name, value){
1882         this.baseParams = this.baseParams || {};
1883         this.baseParams[name] = value;
1884     }
1885 });
1886
1887 Ext.reg('store', Ext.data.Store);
1888
1889 /**
1890  * @class Ext.data.Store.Error
1891  * @extends Ext.Error
1892  * Store Error extension.
1893  * @param {String} name
1894  */
1895 Ext.data.Store.Error = Ext.extend(Ext.Error, {
1896     name: 'Ext.data.Store'
1897 });
1898 Ext.apply(Ext.data.Store.Error.prototype, {
1899     lang: {
1900         'writer-undefined' : 'Attempted to execute a write-action without a DataWriter installed.'
1901     }
1902 });