extjs grid设置某列背景颜色
效果http://www.agoit.com/upload/attachment/67523/4df661c5-32e0-30df-a3c7-f201297e24ae.jpg
css代码
.x-grid-back-red {background: #FF0000;}
{header : '分成类型',dataIndex : 'divideType',renderer : function(v,m){m.css='x-grid-back-red';return v;},width : 60}
或者直接这样写也可以
{header : '编号',dataIndex : 'fcId',css : 'background: #FF0000;',width : 40}
页:
[1]