我有姓名,类型和父母。我可以按'类型'进行分组。是否可以将结果组按“父”分组?
我试图按“分类”分组:
initComponent: function(){
Ext.apply(this, {
:
:
features: [Ext.create('Ext.grid.feature.Grouping', {
groupHeaderTpl: '{columnName}: {name} <tpl if="children">({children.length} ' + this.items + ')</tpl>'
})],
forceFit: true,
store: Ext.create('Ext.data.Store', {
groupField: 'type',
model: 'model.props',
proxy: {
type: 'memory',
reader: {
type: 'json',
rootProperty: 'props'
}
}
})
});
}
按“类型”分组。现在我需要将每个结果组按“父”分组
答案 0 :(得分:0)
不使用标准ExtJS,普通网格和石斑鱼。这些仅支持由一个属性分组。但是:
有人为ExtJS 4做了自定义扩展程序,您可以根据自己的ExtJS版本进行调整:https://www.sencha.com/forum/showthread.php?226739 https://www.sencha.com/forum/showthread.php?242633