X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..refs/heads/master:/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 @@ -
/**
+
+
+
+
+ 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
+});
+
+