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();
source
share