Ext4 viewConfig getRowClass 背景颜色修改

css

 .my_row_red .x-grid-cell {    //一定要加后面-cell class名称,否则无效

background-color: red;

}

 

js

new Ext.grid.panel({

     ...

     viewConfig : {

forceFit : true,

getRowClass : function(record, rowIndex, rowParams, store) {

if (record.data.status> 0) {

return 'my_row_red';   //返回的class name

}

}

}

})

你可能感兴趣的:(Ext4 viewConfig getRowClass 背景颜色修改)