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

Popular posts from this blog

android - Inheriting from Theme.AppCompat* -

broadcastreceiver - android BOOT_COMPLETED not received if not activity intent-filter -

basic authentication with http post params android -