我想转置网格并按行显示总和。总和应显示在行的末尾或任何提到的位置。
答案 0 :(得分:0)
对于逐行求和,请为网格添加额外的列。
{
text: 'Total',
dataIndex: 'total'
}
并在模型中编写一个total函数,返回所有字段的总和。
{
name: 'total',
convert: function(value, record) {
return record.get('field1') + record.get('field2') + record.get('field3');
}
}