X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/docs/source/ListFilter.html diff --git a/examples/docs/source/ListFilter.html b/examples/docs/source/ListFilter.html deleted file mode 100644 index 8c373085..00000000 --- a/examples/docs/source/ListFilter.html +++ /dev/null @@ -1,186 +0,0 @@ - - - - The source code - - - - -
/*!
- * Ext JS Library 3.3.1
- * Copyright(c) 2006-2010 Sencha Inc.
- * licensing@sencha.com
- * http://www.sencha.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:

- *
- - \ No newline at end of file