ExtJs Grid怎样合计列,取其他列的值
2009-07-05 16:41 午夜瞎想 阅读(2721) 评论(0) 编辑 收藏 举报 1: {
2: dataIndex : 'Price',
3: header : '金额',
4: hidden : false,
5: renderer : function (value, cellmeta, record, rowIndex, columnIndex, store)
6: {
7: return record.data["Price"]*record.data["Amount"]
8: }
9: }