我通过Web Socket获取数据,我手动将其添加到商店:
// Remove old records and put newer into the store.
var store = me.grid.getStore();
store.removeAll();
store.add(results);
store.totalCount = results.length;
me.pagingToolbar.onLoad();
我正在手动调用分页工具栏的onLoad来触发它来完成它的工作并且这个工作正常。但是,网格现在显示所有数据,我想知道如何过滤掉一些不可见的记录。
有办法做到这一点吗?