X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/MixedCollection.html diff --git a/docs/source/MixedCollection.html b/docs/source/MixedCollection.html index 9ddccf36..19879a7c 100644 --- a/docs/source/MixedCollection.html +++ b/docs/source/MixedCollection.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.util.MixedCollection
  * <p>
  * Represents a collection of a set of key and value pairs. Each key in the MixedCollection
@@ -57,7 +74,7 @@ Ext.define('Ext.util.MixedCollection', {
         this.sortBy(sorterFn);
     },
 
-    /**
+    /**
      * @private
      * Performs the actual sorting based on a direction and a sorting function. Internally,
      * this creates a temporary array of all items in the MixedCollection, sorts it and then writes
@@ -109,7 +126,7 @@ Ext.define('Ext.util.MixedCollection', {
         me.fireEvent('sort', me);
     },
 
-    /**
+    /**
      * Sorts the collection by a single sorter function
      * @param {Function} sorterFn The function to sort by
      */
@@ -148,7 +165,7 @@ Ext.define('Ext.util.MixedCollection', {
         me.fireEvent('sort', me, items, keys);
     },
 
-    /**
+    /**
      * Reorders each of the items based on a mapping from old index to new index. Internally this
      * just translates into a sort. The 'sort' event is fired whenever reordering has occured.
      * @param {Object} mapping Mapping from old item index to new item index
@@ -188,7 +205,7 @@ Ext.define('Ext.util.MixedCollection', {
         me.fireEvent('sort', me);
     },
 
-    /**
+    /**
      * Sorts this collection by <b>key</b>s.
      * @param {String} direction (optional) 'ASC' or 'DESC'. Defaults to 'ASC'.
      * @param {Function} fn (optional) Comparison function that defines the sort order.
@@ -201,4 +218,6 @@ Ext.define('Ext.util.MixedCollection', {
         });
     }
 });
-
\ No newline at end of file +
+ +