在 ExtJS 中,如何设置 Ext.grid.EditorGridPanel 中一行的背景颜色

In ExtJS, how do you set the background color of a row in a Ext.grid.EditorGridPanel

我有一个 ExtJS 网络应用程序,我需要在其中设置 Ext.grid.EditorGridPanel.

行的颜色

我需要做的是根据行中其中一个字段的值设置颜色。

看起来这应该很容易 - 但到目前为止我已经花了几个小时在这上面但没有运气。

有什么建议吗?

谢谢!

使用类似下面的内容。这将为每一行添加一个 class。然后,您可以添加一些 CSS 以根据其 class.

设置行的样式
getRowClass: function(record) {
        return record.get('parameter_1') === 'value1' ? 'class-1' : 'class-2';
    }
},