EXtjs mesh filters

I am a new user of the Extjs library, I created the grid successfully and works fine, now I want to use Ext.grid.GridFilters to add filtering to my grid, however I do not see this class in Extjs source code files, where can I get the necessary files?

+5
source share
4 answers

A community-supported grid filter plugin is in this forum thread .

+4
source

- , . , , STORE . . , , , , . .

+2

ExtJs :

store.filterBy(function(rec, id)) { return (rec.get("RecName") =="FilterRecord");}

After filtering the data, the filter will always be present in the Filters filter settings. Therefore, if we want to remove filters and show all records, then just clear the filters you apply as follows:

store.clearFilter();
0
source