Fix #6201 - Category select
[roojs1] / Roo / data / Store.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11
12
13
14 /**
15  * @class Roo.data.Store
16  * @extends Roo.util.Observable
17  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
18  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
19  * <p>
20  * A Store object uses an implementation of {@link Roo.data.DataProxy} to access a data object unless you call loadData() directly and pass in your data. The Store object
21  * has no knowledge of the format of the data returned by the Proxy.<br>
22  * <p>
23  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
24  * instances from the data object. These records are cached and made available through accessor functions.
25  * @constructor
26  * Creates a new Store.
27  * @param {Object} config A config object containing the objects needed for the Store to access data,
28  * and read the data into Records.
29  */
30 Roo.data.Store = function(config){
31     this.data = new Roo.util.MixedCollection(false);
32     this.data.getKey = function(o){
33         return o.id;
34     };
35     this.baseParams = {};
36     // private
37     this.paramNames = {
38         "start" : "start",
39         "limit" : "limit",
40         "sort" : "sort",
41         "dir" : "dir",
42         "multisort" : "_multisort"
43     };
44
45     if(config && config.data){
46         this.inlineData = config.data;
47         delete config.data;
48     }
49
50     Roo.apply(this, config);
51     
52     if(this.reader){ // reader passed
53         this.reader = Roo.factory(this.reader, Roo.data);
54         this.reader.xmodule = this.xmodule || false;
55         if(!this.recordType){
56             this.recordType = this.reader.recordType;
57         }
58         if(this.reader.onMetaChange){
59             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
60         }
61     }
62
63     if(this.recordType){
64         this.fields = this.recordType.prototype.fields;
65     }
66     this.modified = [];
67
68     this.addEvents({
69         /**
70          * @event datachanged
71          * Fires when the data cache has changed, and a widget which is using this Store
72          * as a Record cache should refresh its view.
73          * @param {Store} this
74          */
75         datachanged : true,
76         /**
77          * @event metachange
78          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
79          * @param {Store} this
80          * @param {Object} meta The JSON metadata
81          */
82         metachange : true,
83         /**
84          * @event add
85          * Fires when Records have been added to the Store
86          * @param {Store} this
87          * @param {Roo.data.Record[]} records The array of Records added
88          * @param {Number} index The index at which the record(s) were added
89          */
90         add : true,
91         /**
92          * @event remove
93          * Fires when a Record has been removed from the Store
94          * @param {Store} this
95          * @param {Roo.data.Record} record The Record that was removed
96          * @param {Number} index The index at which the record was removed
97          */
98         remove : true,
99         /**
100          * @event update
101          * Fires when a Record has been updated
102          * @param {Store} this
103          * @param {Roo.data.Record} record The Record that was updated
104          * @param {String} operation The update operation being performed.  Value may be one of:
105          * <pre><code>
106  Roo.data.Record.EDIT
107  Roo.data.Record.REJECT
108  Roo.data.Record.COMMIT
109          * </code></pre>
110          */
111         update : true,
112         /**
113          * @event clear
114          * Fires when the data cache has been cleared.
115          * @param {Store} this
116          */
117         clear : true,
118         /**
119          * @event beforeload
120          * Fires before a request is made for a new data object.  If the beforeload handler returns false
121          * the load action will be canceled.
122          * @param {Store} this
123          * @param {Object} options The loading options that were specified (see {@link #load} for details)
124          */
125         beforeload : true,
126         /**
127          * @event beforeloadadd
128          * Fires after a new set of Records has been loaded.
129          * @param {Store} this
130          * @param {Roo.data.Record[]} records The Records that were loaded
131          * @param {Object} options The loading options that were specified (see {@link #load} for details)
132          */
133         beforeloadadd : true,
134         /**
135          * @event load
136          * Fires after a new set of Records has been loaded, before they are added to the store.
137          * @param {Store} this
138          * @param {Roo.data.Record[]} records The Records that were loaded
139          * @param {Object} options The loading options that were specified (see {@link #load} for details)
140          * @params {Object} return from reader
141          */
142         load : true,
143         /**
144          * @event loadexception
145          * Fires if an exception occurs in the Proxy during loading.
146          * Called with the signature of the Proxy's "loadexception" event.
147          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
148          * 
149          * @param {Proxy} 
150          * @param {Object} return from JsonData.reader() - success, totalRecords, records
151          * @param {Object} load options 
152          * @param {Object} jsonData from your request (normally this contains the Exception)
153          */
154         loadexception : true
155     });
156     
157     if(this.proxy){
158         this.proxy = Roo.factory(this.proxy, Roo.data);
159         this.proxy.xmodule = this.xmodule || false;
160         this.relayEvents(this.proxy,  ["loadexception"]);
161     }
162     this.sortToggle = {};
163     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
164
165     Roo.data.Store.superclass.constructor.call(this);
166
167     if(this.inlineData){
168         this.loadData(this.inlineData);
169         delete this.inlineData;
170     }
171 };
172
173 Roo.extend(Roo.data.Store, Roo.util.Observable, {
174      /**
175     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
176     * without a remote query - used by combo/forms at present.
177     */
178     
179     /**
180     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
181     */
182     /**
183     * @cfg {Array} data Inline data to be loaded when the store is initialized.
184     */
185     /**
186     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
187     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
188     */
189     /**
190     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
191     * on any HTTP request
192     */
193     /**
194     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
195     */
196     /**
197     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
198     */
199     multiSort: false,
200     /**
201     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
202     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
203     */
204     remoteSort : false,
205
206     /**
207     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
208      * loaded or when a record is removed. (defaults to false).
209     */
210     pruneModifiedRecords : false,
211
212     // private
213     lastOptions : null,
214
215     /**
216      * Add Records to the Store and fires the add event.
217      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
218      */
219     add : function(records){
220         records = [].concat(records);
221         for(var i = 0, len = records.length; i < len; i++){
222             records[i].join(this);
223         }
224         var index = this.data.length;
225         this.data.addAll(records);
226         this.fireEvent("add", this, records, index);
227     },
228
229     /**
230      * Remove a Record from the Store and fires the remove event.
231      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
232      */
233     remove : function(record){
234         var index = this.data.indexOf(record);
235         this.data.removeAt(index);
236  
237         if(this.pruneModifiedRecords){
238             this.modified.remove(record);
239         }
240         this.fireEvent("remove", this, record, index);
241     },
242
243     /**
244      * Remove all Records from the Store and fires the clear event.
245      */
246     removeAll : function(){
247         this.data.clear();
248         if(this.pruneModifiedRecords){
249             this.modified = [];
250         }
251         this.fireEvent("clear", this);
252     },
253
254     /**
255      * Inserts Records to the Store at the given index and fires the add event.
256      * @param {Number} index The start index at which to insert the passed Records.
257      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
258      */
259     insert : function(index, records){
260         records = [].concat(records);
261         for(var i = 0, len = records.length; i < len; i++){
262             this.data.insert(index, records[i]);
263             records[i].join(this);
264         }
265         this.fireEvent("add", this, records, index);
266     },
267
268     /**
269      * Get the index within the cache of the passed Record.
270      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
271      * @return {Number} The index of the passed Record. Returns -1 if not found.
272      */
273     indexOf : function(record){
274         return this.data.indexOf(record);
275     },
276
277     /**
278      * Get the index within the cache of the Record with the passed id.
279      * @param {String} id The id of the Record to find.
280      * @return {Number} The index of the Record. Returns -1 if not found.
281      */
282     indexOfId : function(id){
283         return this.data.indexOfKey(id);
284     },
285
286     /**
287      * Get the Record with the specified id.
288      * @param {String} id The id of the Record to find.
289      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
290      */
291     getById : function(id){
292         return this.data.key(id);
293     },
294
295     /**
296      * Get the Record at the specified index.
297      * @param {Number} index The index of the Record to find.
298      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
299      */
300     getAt : function(index){
301         return this.data.itemAt(index);
302     },
303
304     /**
305      * Returns a range of Records between specified indices.
306      * @param {Number} startIndex (optional) The starting index (defaults to 0)
307      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
308      * @return {Roo.data.Record[]} An array of Records
309      */
310     getRange : function(start, end){
311         return this.data.getRange(start, end);
312     },
313
314     // private
315     storeOptions : function(o){
316         o = Roo.apply({}, o);
317         delete o.callback;
318         delete o.scope;
319         this.lastOptions = o;
320     },
321
322     /**
323      * Loads the Record cache from the configured Proxy using the configured Reader.
324      * <p>
325      * If using remote paging, then the first load call must specify the <em>start</em>
326      * and <em>limit</em> properties in the options.params property to establish the initial
327      * position within the dataset, and the number of Records to cache on each read from the Proxy.
328      * <p>
329      * <strong>It is important to note that for remote data sources, loading is asynchronous,
330      * and this call will return before the new data has been loaded. Perform any post-processing
331      * in a callback function, or in a "load" event handler.</strong>
332      * <p>
333      * @param {Object} options An object containing properties which control loading options:<ul>
334      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
335      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
336      * passed the following arguments:<ul>
337      * <li>r : Roo.data.Record[]</li>
338      * <li>options: Options object from the load call</li>
339      * <li>success: Boolean success indicator</li></ul></li>
340      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
341      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
342      * </ul>
343      */
344     load : function(options){
345         options = options || {};
346         if(this.fireEvent("beforeload", this, options) !== false){
347             this.storeOptions(options);
348             var p = Roo.apply(options.params || {}, this.baseParams);
349             // if meta was not loaded from remote source.. try requesting it.
350             if (!this.reader.metaFromRemote) {
351                 p._requestMeta = 1;
352             }
353             if(this.sortInfo && this.remoteSort){
354                 var pn = this.paramNames;
355                 p[pn["sort"]] = this.sortInfo.field;
356                 p[pn["dir"]] = this.sortInfo.direction;
357             }
358             if (this.multiSort) {
359                 var pn = this.paramNames;
360                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
361             }
362             
363             this.proxy.load(p, this.reader, this.loadRecords, this, options);
364         }
365     },
366
367     /**
368      * Reloads the Record cache from the configured Proxy using the configured Reader and
369      * the options from the last load operation performed.
370      * @param {Object} options (optional) An object containing properties which may override the options
371      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
372      * the most recently used options are reused).
373      */
374     reload : function(options){
375         this.load(Roo.applyIf(options||{}, this.lastOptions));
376     },
377
378     // private
379     // Called as a callback by the Reader during a load operation.
380     loadRecords : function(o, options, success){
381         if(!o || success === false){
382             if(success !== false){
383                 this.fireEvent("load", this, [], options, o);
384             }
385             if(options.callback){
386                 options.callback.call(options.scope || this, [], options, false);
387             }
388             return;
389         }
390         // if data returned failure - throw an exception.
391         if (o.success === false) {
392             // show a message if no listener is registered.
393             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
394                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
395             }
396             // loadmask wil be hooked into this..
397             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
398             return;
399         }
400         var r = o.records, t = o.totalRecords || r.length;
401         
402         this.fireEvent("beforeloadadd", this, r, options, o);
403         
404         if(!options || options.add !== true){
405             if(this.pruneModifiedRecords){
406                 this.modified = [];
407             }
408             for(var i = 0, len = r.length; i < len; i++){
409                 r[i].join(this);
410             }
411             if(this.snapshot){
412                 this.data = this.snapshot;
413                 delete this.snapshot;
414             }
415             this.data.clear();
416             this.data.addAll(r);
417             this.totalLength = t;
418             this.applySort();
419             this.fireEvent("datachanged", this);
420         }else{
421             this.totalLength = Math.max(t, this.data.length+r.length);
422             this.add(r);
423         }
424         
425         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
426                 
427             var e = new Roo.data.Record({});
428
429             e.set(this.parent.displayField, this.parent.emptyTitle);
430             e.set(this.parent.valueField, '');
431
432             this.insert(0, e);
433         }
434             
435         this.fireEvent("load", this, r, options, o);
436         if(options.callback){
437             options.callback.call(options.scope || this, r, options, true);
438         }
439     },
440
441
442     /**
443      * Loads data from a passed data block. A Reader which understands the format of the data
444      * must have been configured in the constructor.
445      * @param {Object} data The data block from which to read the Records.  The format of the data expected
446      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
447      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
448      */
449     loadData : function(o, append){
450         var r = this.reader.readRecords(o);
451         this.loadRecords(r, {add: append}, true);
452     },
453     
454      /**
455      * using 'cn' the nested child reader read the child array into it's child stores.
456      * @param {Object} rec The record with a 'children array
457      */
458     loadDataFromChildren : function(rec)
459     {
460         this.loadData(this.reader.toLoadData(rec));
461     },
462     
463
464     /**
465      * Gets the number of cached records.
466      * <p>
467      * <em>If using paging, this may not be the total size of the dataset. If the data object
468      * used by the Reader contains the dataset size, then the getTotalCount() function returns
469      * the data set size</em>
470      */
471     getCount : function(){
472         return this.data.length || 0;
473     },
474
475     /**
476      * Gets the total number of records in the dataset as returned by the server.
477      * <p>
478      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
479      * the dataset size</em>
480      */
481     getTotalCount : function(){
482         return this.totalLength || 0;
483     },
484
485     /**
486      * Returns the sort state of the Store as an object with two properties:
487      * <pre><code>
488  field {String} The name of the field by which the Records are sorted
489  direction {String} The sort order, "ASC" or "DESC"
490      * </code></pre>
491      */
492     getSortState : function(){
493         return this.sortInfo;
494     },
495
496     // private
497     applySort : function(){
498         if(this.sortInfo && !this.remoteSort){
499             var s = this.sortInfo, f = s.field;
500             var st = this.fields.get(f).sortType;
501             var fn = function(r1, r2){
502                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
503                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
504             };
505             this.data.sort(s.direction, fn);
506             if(this.snapshot && this.snapshot != this.data){
507                 this.snapshot.sort(s.direction, fn);
508             }
509         }
510     },
511
512     /**
513      * Sets the default sort column and order to be used by the next load operation.
514      * @param {String} fieldName The name of the field to sort by.
515      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
516      */
517     setDefaultSort : function(field, dir){
518         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
519     },
520
521     /**
522      * Sort the Records.
523      * If remote sorting is used, the sort is performed on the server, and the cache is
524      * reloaded. If local sorting is used, the cache is sorted internally.
525      * @param {String} fieldName The name of the field to sort by.
526      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
527      */
528     sort : function(fieldName, dir){
529         var f = this.fields.get(fieldName);
530         if(!dir){
531             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
532             
533             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
534                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
535             }else{
536                 dir = f.sortDir;
537             }
538         }
539         this.sortToggle[f.name] = dir;
540         this.sortInfo = {field: f.name, direction: dir};
541         if(!this.remoteSort){
542             this.applySort();
543             this.fireEvent("datachanged", this);
544         }else{
545             this.load(this.lastOptions);
546         }
547     },
548
549     /**
550      * Calls the specified function for each of the Records in the cache.
551      * @param {Function} fn The function to call. The Record is passed as the first parameter.
552      * Returning <em>false</em> aborts and exits the iteration.
553      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
554      */
555     each : function(fn, scope){
556         this.data.each(fn, scope);
557     },
558
559     /**
560      * Gets all records modified since the last commit.  Modified records are persisted across load operations
561      * (e.g., during paging).
562      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
563      */
564     getModifiedRecords : function(){
565         return this.modified;
566     },
567
568     // private
569     createFilterFn : function(property, value, anyMatch){
570         if(!value.exec){ // not a regex
571             value = String(value);
572             if(value.length == 0){
573                 return false;
574             }
575             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
576         }
577         return function(r){
578             return value.test(r.data[property]);
579         };
580     },
581
582     /**
583      * Sums the value of <i>property</i> for each record between start and end and returns the result.
584      * @param {String} property A field on your records
585      * @param {Number} start The record index to start at (defaults to 0)
586      * @param {Number} end The last record index to include (defaults to length - 1)
587      * @return {Number} The sum
588      */
589     sum : function(property, start, end){
590         var rs = this.data.items, v = 0;
591         start = start || 0;
592         end = (end || end === 0) ? end : rs.length-1;
593
594         for(var i = start; i <= end; i++){
595             v += (rs[i].data[property] || 0);
596         }
597         return v;
598     },
599
600     /**
601      * Filter the records by a specified property.
602      * @param {String} field A field on your records
603      * @param {String/RegExp} value Either a string that the field
604      * should start with or a RegExp to test against the field
605      * @param {Boolean} anyMatch True to match any part not just the beginning
606      */
607     filter : function(property, value, anyMatch){
608         var fn = this.createFilterFn(property, value, anyMatch);
609         return fn ? this.filterBy(fn) : this.clearFilter();
610     },
611
612     /**
613      * Filter by a function. The specified function will be called with each
614      * record in this data source. If the function returns true the record is included,
615      * otherwise it is filtered.
616      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
617      * @param {Object} scope (optional) The scope of the function (defaults to this)
618      */
619     filterBy : function(fn, scope){
620         this.snapshot = this.snapshot || this.data;
621         this.data = this.queryBy(fn, scope||this);
622         this.fireEvent("datachanged", this);
623     },
624
625     /**
626      * Query the records by a specified property.
627      * @param {String} field A field on your records
628      * @param {String/RegExp} value Either a string that the field
629      * should start with or a RegExp to test against the field
630      * @param {Boolean} anyMatch True to match any part not just the beginning
631      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
632      */
633     query : function(property, value, anyMatch){
634         var fn = this.createFilterFn(property, value, anyMatch);
635         return fn ? this.queryBy(fn) : this.data.clone();
636     },
637
638     /**
639      * Query by a function. The specified function will be called with each
640      * record in this data source. If the function returns true the record is included
641      * in the results.
642      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
643      * @param {Object} scope (optional) The scope of the function (defaults to this)
644       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
645      **/
646     queryBy : function(fn, scope){
647         var data = this.snapshot || this.data;
648         return data.filterBy(fn, scope||this);
649     },
650
651     /**
652      * Collects unique values for a particular dataIndex from this store.
653      * @param {String} dataIndex The property to collect
654      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
655      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
656      * @return {Array} An array of the unique values
657      **/
658     collect : function(dataIndex, allowNull, bypassFilter){
659         var d = (bypassFilter === true && this.snapshot) ?
660                 this.snapshot.items : this.data.items;
661         var v, sv, r = [], l = {};
662         for(var i = 0, len = d.length; i < len; i++){
663             v = d[i].data[dataIndex];
664             sv = String(v);
665             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
666                 l[sv] = true;
667                 r[r.length] = v;
668             }
669         }
670         return r;
671     },
672
673     /**
674      * Revert to a view of the Record cache with no filtering applied.
675      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
676      */
677     clearFilter : function(suppressEvent){
678         if(this.snapshot && this.snapshot != this.data){
679             this.data = this.snapshot;
680             delete this.snapshot;
681             if(suppressEvent !== true){
682                 this.fireEvent("datachanged", this);
683             }
684         }
685     },
686
687     // private
688     afterEdit : function(record){
689         if(this.modified.indexOf(record) == -1){
690             this.modified.push(record);
691         }
692         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
693     },
694     
695     // private
696     afterReject : function(record){
697         this.modified.remove(record);
698         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
699     },
700
701     // private
702     afterCommit : function(record){
703         this.modified.remove(record);
704         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
705     },
706
707     /**
708      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
709      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
710      */
711     commitChanges : function(){
712         var m = this.modified.slice(0);
713         this.modified = [];
714         for(var i = 0, len = m.length; i < len; i++){
715             m[i].commit();
716         }
717     },
718
719     /**
720      * Cancel outstanding changes on all changed records.
721      */
722     rejectChanges : function(){
723         var m = this.modified.slice(0);
724         this.modified = [];
725         for(var i = 0, len = m.length; i < len; i++){
726             m[i].reject();
727         }
728     },
729
730     onMetaChange : function(meta, rtype, o){
731         this.recordType = rtype;
732         this.fields = rtype.prototype.fields;
733         delete this.snapshot;
734         this.sortInfo = meta.sortInfo || this.sortInfo;
735         this.modified = [];
736         this.fireEvent('metachange', this, this.reader.meta);
737     },
738     
739     moveIndex : function(data, type)
740     {
741         var index = this.indexOf(data);
742         
743         var newIndex = index + type;
744         
745         this.remove(data);
746         
747         this.insert(newIndex, data);
748         
749     }
750 });