javascript - How to use mix of remote and local filtering on a store? -


i have scenario in want use remotefilter grid column filter , local filtering textbox provided in toolbar on same store. can suggest better way this?

please let me know if need more inputs.

i think in extjs 4.x, not possible. either store uses local filtering or remote filtering, not both.

in extjs 5, there possibility chain stores. have store remote filtering, , have store b based on store a, local filtering. grid bound store b. disclaimer : never used feature yet.

a workaround possible : instead of loading data automatically store (autoload: false) , can sending remote filter parameters store.load({params: ... }), , configure store local filtering.


Comments