标签: extjs
我有以下代码:
Ext.define('MyStore', { extend: 'Ext.data.Store', config: { //proxy and domain properties model: 'Contact' , autoLoad: true, groupField: 'Name' } });
我想重置“手机”上的分组。 如何更改商店中的数据分组并重新加载?
答案 0 :(得分:6)
使用商店的group方法。它将clear the previously set groupers。
group