我需要更改网格单元格的背景,使用我的代码更改文本颜色:
getRowClass: function(record, rowIndex, rowParams, store){
var grupo = record.get("tipo");
if (grupo == 'G'){
console.log('Grupo');
return 'redUnderlinedText';
}
.redUnderlinedText {
background-color: blue;// <= this code doesn't work
color: red;
text-decoration: underline;
cursor: pointer;
}
但我想更改单元格的背景,如下所示。
这可能吗?
谢谢,克劳迪奥。