2017-07-25 78 views
1

我想從我的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

你爲什麼不設置了一個param添加到您的代理,以便服務器只響應100條記錄?如果你不需要它,爲什麼要加載這麼多的數據?或者你呢? – scebotari66

+0

如何添加? – David

+0

查看[extraParams](http://docs.sencha.com/extjs/6.2.0/classic/Ext.data.proxy.Ajax.html#cfg-extraParams)代理配置 – scebotari66

回答