I explicitly add a filter to a Ext.data.Store using the store.filter(string,string) method.

However, I can not figure out how to remove filters from the store. So the filters always apply even after reloading using store.load(). The only workaround I see is to restart the entire web app.

How do I remove a filter from an Ext.data.Store?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You need to clearFilter()

link|improve this answer
feedback

In addition to Mchi's answer, I want to say that it is possible to remove specific filter (clearFilter() removes them all).
To do that, instead of using store.filter('property_to_filter','value') method, use:

store.filters.add('filtersId', new Ext.util.Filter({
  property: 'property_to_filter',
  value: 'value'
});
store.load();

to remove filter use:

store.filters.removeAtKey('filtersId');
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.