Hi guys,
Not sure whether this is a bug, or just some changed behavior in Ext Js 5. After upgrading from Ext Js 4 to 5 I'm struggling with the following:
I have a store with a proxy and config remotefilter=true. In Ext Js 4 I can add filters to the store, and then (manually) load the store. This is desirable because:
The second point isn't that much of a problem, as I could rewrite my code to apply the filter after the user stopped typing, instead of with every keydown. (which actually might be a better implementation)
- I can add a few different filters to the store and load the updated data once
- A user can type in a search field, it updates the filter after every key-down, but doesn't reload the store until the user stopped typing for x seconds
In order to solve this behavior, I tried using the suspentEvents() method on both the store and proxy. The attached grid did not show a load mask after doing so, but the store still reloaded in the background.
Anybody a solution?
Thanks!