我想从我的comboStore末尾删除一些项目。
我正在尝试的是正确的,但在UI中显示所有数据。
假设我有500个数据。我想只显示100个数据。怎么做到。
我在这里尝试的是
var ComboStore = this.store.data.items
var ComboStoreLen = ComboStore.length;
if (ComboStoreLen > 100) {
ComboStoreLen.length = 100; // setting the length
}
我需要在UI中限制什么。因为ComboStore有500个数据。
答案 0 :(得分:0)
您无法在UI中进行限制。 UI将始终循环遍历商店中的所有数据。
但是,您可以使用ChainedStore并按原始商店中的索引过滤记录: