所以我使用 ExtJS 来渲染带有数据的网格。我在网格上有很好的功能,但我想在最后一行说“Total of All”,但它重复了第一个组标题。
以下是我的自定义组标题:
features: [{
ftype: 'summary'
}, {
//ftype: 'grouping'
ftype: 'groupingsummary',
groupHeaderTpl: Ext.create('Ext.XTemplate',
'',
'{name:this.formatName} ({rows.length})',
{
formatName: function(name) {
return name.charAt(0).toUpperCase() + name.slice(1);
}
}
),
//groupHeaderTpl: '{name} ({rows.length})',
hideGroupedHeader: true
}],
这是生成总计标题的摘要类型配置:
columns: [{
id :'service-product',
text : 'Product',
flex: 1,
sortable : true,
dataIndex: 'PACKAGE',
summaryType: function(records) {
var myGroupName = records[0].get('LISTING');
return '<span style="font-weight: bold;">'+myGroupName.charAt(0).toUpperCase() + myGroupName.slice(1)+' Totals</span>';
}
}
这是我要自定义的带有突出显示标题的屏幕截图。我已经尝试了几件事。任何人都知道如何获得对该单元格的引用并更改标题?
先感谢您 :)
弥敦道