EXTjs gridfilter: How to clearfilter without reloading store?

后端 未结 4 1875
孤街浪徒
孤街浪徒 2021-01-16 02:03

In extjs GridFilters, is there a way to clear the filters without reloading the store?
This is the rquirement:
There is a grid(#1) and another grid(#2) below the gri

4条回答
  •  日久生厌
    2021-01-16 02:04

    have you tried temporarily suspending the events on the grid? grid.suspendEvents(); grid.doYourMagic(); grid.resumeEvents();

    reloading of the store is most likely triggered by an event anyway.

提交回复
热议问题