{ header: "销售(面积)比例", dataIndex: "bili", id:'timeline', //可以进行排序 sortable: true, renderer:function(value,cellmeta,record,rowIndex,columnIndex,stroe){ } }value:将要像是单元格里的值,即dataIndex的值
cellmeta:单元格的相关属性,主要是id和CSS
record:这行的数据对象。通过record.data['id']方式得到其他列的值
rowIndex:行号
columnIndex:当前列的行号
store:构造表格时传递的ds,也就是说,表格里所有的数据都可以通过store获得。