f27e2d6483c061d3c8d96c98a6c6859a17949a90
[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      * Gets the number of cached records.
456      * <p>
457      * <em>If using paging, this may not be the total size of the dataset. If the data object
458      * used by the Reader contains the dataset size, then the getTotalCount() function returns
459      * the data set size</em>
460      */
461     getCount : function(){
462         return this.data.length || 0;
463     },
464
465     /**
466      * Gets the total number of records in the dataset as returned by the server.
467      * <p>
468      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
469      * the dataset size</em>
470      */
471     getTotalCount : function(){
472         return this.totalLength || 0;
473     },
474
475     /**
476      * Returns the sort state of the Store as an object with two properties:
477      * <pre><code>
478  field {String} The name of the field by which the Records are sorted
479  direction {String} The sort order, "ASC" or "DESC"
480      * </code></pre>
481      */
482     getSortState : function(){
483         return this.sortInfo;
484     },
485
486     // private
487     applySort : function(){
488         if(this.sortInfo && !this.remoteSort){
489             var s = this.sortInfo, f = s.field;
490             var st = this.fields.get(f).sortType;
491             var fn = function(r1, r2){
492                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
493                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
494             };
495             this.data.sort(s.direction, fn);
496             if(this.snapshot && this.snapshot != this.data){
497                 this.snapshot.sort(s.direction, fn);
498             }
499         }
500     },
501
502     /**
503      * Sets the default sort column and order to be used by the next load operation.
504      * @param {String} fieldName The name of the field to sort by.
505      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
506      */
507     setDefaultSort : function(field, dir){
508         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
509     },
510
511     /**
512      * Sort the Records.
513      * If remote sorting is used, the sort is performed on the server, and the cache is
514      * reloaded. If local sorting is used, the cache is sorted internally.
515      * @param {String} fieldName The name of the field to sort by.
516      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
517      */
518     sort : function(fieldName, dir){
519         var f = this.fields.get(fieldName);
520         if(!dir){
521             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
522             
523             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
524                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
525             }else{
526                 dir = f.sortDir;
527             }
528         }
529         this.sortToggle[f.name] = dir;
530         this.sortInfo = {field: f.name, direction: dir};
531         if(!this.remoteSort){
532             this.applySort();
533             this.fireEvent("datachanged", this);
534         }else{
535             this.load(this.lastOptions);
536         }
537     },
538
539     /**
540      * Calls the specified function for each of the Records in the cache.
541      * @param {Function} fn The function to call. The Record is passed as the first parameter.
542      * Returning <em>false</em> aborts and exits the iteration.
543      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
544      */
545     each : function(fn, scope){
546         this.data.each(fn, scope);
547     },
548
549     /**
550      * Gets all records modified since the last commit.  Modified records are persisted across load operations
551      * (e.g., during paging).
552      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
553      */
554     getModifiedRecords : function(){
555         return this.modified;
556     },
557
558     // private
559     createFilterFn : function(property, value, anyMatch){
560         if(!value.exec){ // not a regex
561             value = String(value);
562             if(value.length == 0){
563                 return false;
564             }
565             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
566         }
567         return function(r){
568             return value.test(r.data[property]);
569         };
570     },
571
572     /**
573      * Sums the value of <i>property</i> for each record between start and end and returns the result.
574      * @param {String} property A field on your records
575      * @param {Number} start The record index to start at (defaults to 0)
576      * @param {Number} end The last record index to include (defaults to length - 1)
577      * @return {Number} The sum
578      */
579     sum : function(property, start, end){
580         var rs = this.data.items, v = 0;
581         start = start || 0;
582         end = (end || end === 0) ? end : rs.length-1;
583
584         for(var i = start; i <= end; i++){
585             v += (rs[i].data[property] || 0);
586         }
587         return v;
588     },
589
590     /**
591      * Filter the records by a specified property.
592      * @param {String} field A field on your records
593      * @param {String/RegExp} value Either a string that the field
594      * should start with or a RegExp to test against the field
595      * @param {Boolean} anyMatch True to match any part not just the beginning
596      */
597     filter : function(property, value, anyMatch){
598         var fn = this.createFilterFn(property, value, anyMatch);
599         return fn ? this.filterBy(fn) : this.clearFilter();
600     },
601
602     /**
603      * Filter by a function. The specified function will be called with each
604      * record in this data source. If the function returns true the record is included,
605      * otherwise it is filtered.
606      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
607      * @param {Object} scope (optional) The scope of the function (defaults to this)
608      */
609     filterBy : function(fn, scope){
610         this.snapshot = this.snapshot || this.data;
611         this.data = this.queryBy(fn, scope||this);
612         this.fireEvent("datachanged", this);
613     },
614
615     /**
616      * Query the records by a specified property.
617      * @param {String} field A field on your records
618      * @param {String/RegExp} value Either a string that the field
619      * should start with or a RegExp to test against the field
620      * @param {Boolean} anyMatch True to match any part not just the beginning
621      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
622      */
623     query : function(property, value, anyMatch){
624         var fn = this.createFilterFn(property, value, anyMatch);
625         return fn ? this.queryBy(fn) : this.data.clone();
626     },
627
628     /**
629      * Query by a function. The specified function will be called with each
630      * record in this data source. If the function returns true the record is included
631      * in the results.
632      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
633      * @param {Object} scope (optional) The scope of the function (defaults to this)
634       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
635      **/
636     queryBy : function(fn, scope){
637         var data = this.snapshot || this.data;
638         return data.filterBy(fn, scope||this);
639     },
640
641     /**
642      * Collects unique values for a particular dataIndex from this store.
643      * @param {String} dataIndex The property to collect
644      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
645      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
646      * @return {Array} An array of the unique values
647      **/
648     collect : function(dataIndex, allowNull, bypassFilter){
649         var d = (bypassFilter === true && this.snapshot) ?
650                 this.snapshot.items : this.data.items;
651         var v, sv, r = [], l = {};
652         for(var i = 0, len = d.length; i < len; i++){
653             v = d[i].data[dataIndex];
654             sv = String(v);
655             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
656                 l[sv] = true;
657                 r[r.length] = v;
658             }
659         }
660         return r;
661     },
662
663     /**
664      * Revert to a view of the Record cache with no filtering applied.
665      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
666      */
667     clearFilter : function(suppressEvent){
668         if(this.snapshot && this.snapshot != this.data){
669             this.data = this.snapshot;
670             delete this.snapshot;
671             if(suppressEvent !== true){
672                 this.fireEvent("datachanged", this);
673             }
674         }
675     },
676
677     // private
678     afterEdit : function(record){
679         if(this.modified.indexOf(record) == -1){
680             this.modified.push(record);
681         }
682         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
683     },
684     
685     // private
686     afterReject : function(record){
687         this.modified.remove(record);
688         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
689     },
690
691     // private
692     afterCommit : function(record){
693         this.modified.remove(record);
694         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
695     },
696
697     /**
698      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
699      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
700      */
701     commitChanges : function(){
702         var m = this.modified.slice(0);
703         this.modified = [];
704         for(var i = 0, len = m.length; i < len; i++){
705             m[i].commit();
706         }
707     },
708
709     /**
710      * Cancel outstanding changes on all changed records.
711      */
712     rejectChanges : function(){
713         var m = this.modified.slice(0);
714         this.modified = [];
715         for(var i = 0, len = m.length; i < len; i++){
716             m[i].reject();
717         }
718     },
719
720     onMetaChange : function(meta, rtype, o){
721         this.recordType = rtype;
722         this.fields = rtype.prototype.fields;
723         delete this.snapshot;
724         this.sortInfo = meta.sortInfo || this.sortInfo;
725         this.modified = [];
726         this.fireEvent('metachange', this, this.reader.meta);
727     },
728     
729     moveIndex : function(data, type)
730     {
731         var index = this.indexOf(data);
732         
733         var newIndex = index + type;
734         
735         this.remove(data);
736         
737         this.insert(newIndex, data);
738         
739     }
740 });