X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6e39d509471fe9b4e2660e0d1631b350d0c66f40..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/source/Grouper.html diff --git a/docs/source/Grouper.html b/docs/source/Grouper.html new file mode 100644 index 00000000..103a1844 --- /dev/null +++ b/docs/source/Grouper.html @@ -0,0 +1,22 @@ +
\ No newline at end of file/** + * @class Ext.util.Grouper + * @extends Ext.util.Sorter + */ + +Ext.define('Ext.util.Grouper', { + + /* Begin Definitions */ + + extend: 'Ext.util.Sorter', + + /* End Definitions */ + + /** + * Function description + * @param {Ext.data.Model} instance The Model instance + * @return {String} The group string for this model + */ + getGroupString: function(instance) { + return instance.get(this.property); + } +});