你可以提示我如何在不使用CSS的情况下更改网格行背景颜色吗? 我找到了以下程序,但找不到我应该返回的内容。我希望这就是为什么它不起作用:
viewConfig: {
getRowClass: function(record, index, rowParams, ds) {
rowParams.tstyle = 'width:' + this.getTotalWidth() + ';';
if (set_background) {
rowParams.tstyle += "background-color:" + bgColor + ';';
}
if (set_foreground) {
rowParams.tstyle += "color:" + fgColor + ';';
}
}
}
善意的建议。