X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/source/Sorter.html diff --git a/docs/source/Sorter.html b/docs/source/Sorter.html index c30d3056..fd289044 100644 --- a/docs/source/Sorter.html +++ b/docs/source/Sorter.html @@ -1,25 +1,20 @@ - -
-/*! - * Ext JS Library 3.0.3 - * Copyright(c) 2006-2009 Ext JS, LLC - * licensing@extjs.com - * http://www.extjs.com/license - */ -/** - * @class Ext.ListView.Sorter + + + ++ \ No newline at end of fileThe source code + + + + +/** + * @class Ext.list.Sorter * @extends Ext.util.Observable - *- +}); + +// Backwards compatibility alias +Ext.ListView.Sorter = Ext.list.Sorter;Supporting Class for Ext.ListView.
+ *Supporting Class for Ext.list.ListView
* @constructor * @param {Object} config */ -Ext.ListView.Sorter = Ext.extend(Ext.util.Observable, { - /** +Ext.list.Sorter = Ext.extend(Ext.util.Observable, { + /** * @cfg {Array} sortClasses * The CSS classes applied to a header when it is sorted. (defaults to ["sort-asc", "sort-desc"]) */ @@ -27,7 +22,7 @@ Ext.ListView.Sorter = Ext.extend(Ext.util.Observable, { constructor: function(config){ Ext.apply(this, config); - Ext.ListView.Sorter.superclass.constructor.call(this); + Ext.list.Sorter.superclass.constructor.call(this); }, init : function(listView){ @@ -74,6 +69,9 @@ Ext.ListView.Sorter = Ext.extend(Ext.util.Observable, { this.view.store.sort(this.view.columns[index].dataIndex); } } -});