示例表:
|-Field quantity-|-Field quantity loss-|----Total------|
|-----2----------|-------4-------------|---total=2+4---|
|-----3----------|-------5-------------|---total=3+5---|
我可以通过extjs上的函数来渲染吗?
总计=字段数量+字段数量损失
答案 0 :(得分:3)
是的,您必须使用grid getColumnModel方法。
grid.getColumnModel().setRenderer(2, function(value, metaData, record, rowIndex, colIndex, store) {
return record.get('quantity') + record.get('loss');
});
更多信息:http://dev.sencha.com/deploy/ext-3.3.1/docs/?class=Ext.grid.GridPanel和
http://dev.sencha.com/deploy/ext-3.3.1/docs/?class=Ext.grid.ColumnModel?class=Ext.grid.ColumnModel