extjs4 - Show all rows in grid after clearing filters in ExtJS -
i have data store , grid. add filters in store , work see results in grid. once disable filters aka clear them store want view rows in grid without reloading them web service kind of heavy task. data fetched service , there no need reaload again.
how can this? there function in store?
there similar question correct answer. in short, need call filter method without params after setting remotefilter false:
store.remotefilter = false; store.clearfilter(); store.remotefilter = true; store.filter(); here jsfiddle: http://jsfiddle.net/8gmtd/
Comments
Post a Comment