X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/source/Grouper.html diff --git a/docs/source/Grouper.html b/docs/source/Grouper.html index 103a1844..4d9f69e8 100644 --- a/docs/source/Grouper.html +++ b/docs/source/Grouper.html @@ -1,6 +1,28 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.util.Grouper
  * @extends Ext.util.Sorter
+
+Represents a single grouper that can be applied to a Store. The grouper works
+in the same fashion as the {@link Ext.util.Sorter}.
+
+ * @markdown
  */
  
 Ext.define('Ext.util.Grouper', {
@@ -11,12 +33,14 @@ Ext.define('Ext.util.Grouper', {
 
     /* End Definitions */
 
-    /**
-     * Function description
+    /**
+     * Returns the value for grouping to be used.
      * @param {Ext.data.Model} instance The Model instance
      * @return {String} The group string for this model
      */
     getGroupString: function(instance) {
         return instance.get(this.property);
     }
-});
\ No newline at end of file +});
+ +