X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6a7e4474cba9d8be4b2ec445e10f1691f7277c50..refs/tags/3.2.1:/src/data/Store.js diff --git a/src/data/Store.js b/src/data/Store.js index afd25303..552db7bf 100644 --- a/src/data/Store.js +++ b/src/data/Store.js @@ -1,5 +1,5 @@ /*! - * Ext JS Library 3.2.0 + * Ext JS Library 3.2.1 * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license @@ -659,6 +659,7 @@ sortInfo: { Ext.each(record, function(r){ this.remove(r); }, this); + return; } var index = this.data.indexOf(record); if(index > -1){ @@ -1364,6 +1365,7 @@ myStore.reload(lastOptions); }, /** + * @private * Creates and returns a function which sorts an array by the given field and direction * @param {String} field The field to create the sorter for * @param {String} direction The direction to sort by (defaults to "ASC") @@ -1570,6 +1572,7 @@ myStore.reload(lastOptions); }, /** + * @private * Given an array of filter functions (each with optional scope), constructs and returns a single function that returns * the result of all of the filters ANDed together * @param {Array} filters The array of filter objects (each object should contain an 'fn' and optional scope) @@ -1597,6 +1600,7 @@ myStore.reload(lastOptions); * Single filter example: * store.filter('name', 'Ed', true, true); //finds all records containing the substring 'Ed' * Multiple filter example: + *

      * store.filter([
      *   {
      *     property     : 'name',
@@ -1613,6 +1617,7 @@ myStore.reload(lastOptions);
      *     scope: this
      *   }
      * ]);
+     * 
* @param {String|Array} field A field on your records, or an array containing multiple filter options * @param {String/RegExp} value Either a string that the field should begin with, or a RegExp to test * against the field.