I have a data store and a grid. I add filters in the store and they work properly as I see the results in my grid. But once I disable all my filters aka clear them from my store I want to view all my rows in the grid without reloading them from a web service which is a kind of heavy task. All data is already fetched from the service and there is no need to reaload it again.
How can I do this? Is there some function in the store?
ajax
proxy? But if you load all of it in one fell swoop, why don't you just make that an actual Ajax call, and make your store a memory store? Do you rely on the back-end for filtering/sorting? – incutonez