Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们如何在应用过滤器后刷新增强网格,保留过滤器查询?做 grid.setFilter() 清除过滤器。有什么方法可以访问网格中的所有活动过滤器,以提供类似 grid.setFilter(activefilters)?????
嗯.....我自己得到了答案,
它的 grid.getFilter() 给出了当前的过滤器
grid.setFilter(grid.getFilter());
使用当前过滤器刷新网格..
就这么简单:)