0

Is it possible that I can get all records even though the filters are apply to the store. Please provide some guideline or reference code.

var spareStore = Ext.getStore('ABC');
spareStore.filter( 'item', value);

when I alert spareStore count it should be all rechords. Thanks

4

1 回答 1

1

你可以使用 store 的快照属性为:

var allRecords = store.snapshot || store.data;
于 2013-09-24T17:27:58.290 回答