X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/examples/ux/gridfilters/filter/ListFilter.js diff --git a/examples/ux/gridfilters/filter/ListFilter.js b/examples/ux/gridfilters/filter/ListFilter.js index b6f8e535..dbc4180a 100644 --- a/examples/ux/gridfilters/filter/ListFilter.js +++ b/examples/ux/gridfilters/filter/ListFilter.js @@ -1,176 +1,176 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC + * Ext JS Library 3.2.0 + * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license */ -/** - * @class Ext.ux.grid.filter.ListFilter - * @extends Ext.ux.grid.filter.Filter - *

List filters are able to be preloaded/backed by an Ext.data.Store to load - * their options the first time they are shown. ListFilter utilizes the - * {@link Ext.ux.menu.ListMenu} component.

- *

Although not shown here, this class accepts all configuration options - * for {@link Ext.ux.menu.ListMenu}.

- * - *

Example Usage:

- *
    
-var filters = new Ext.ux.grid.GridFilters({
-    ...
-    filters: [{
-        type: 'list',
-        dataIndex: 'size',
-        phpMode: true,
-        // options will be used as data to implicitly creates an ArrayStore
-        options: ['extra small', 'small', 'medium', 'large', 'extra large']
-    }]
-});
- * 
- * - */ -Ext.ux.grid.filter.ListFilter = Ext.extend(Ext.ux.grid.filter.Filter, { - - /** - * @cfg {Array} options - *

data to be used to implicitly create a data store - * to back this list when the data source is local. If the - * data for the list is remote, use the {@link #store} - * config instead.

- *

Each item within the provided array may be in one of the - * following formats:

- *