X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/Grouper.html diff --git a/docs/source/Grouper.html b/docs/source/Grouper.html index 103a1844..219f1bad 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 +});
+ +