EXTJS 4在没有CSS的情况下更改行collor

时间:2015-07-14 10:48:06

标签: extjs

你可以提示我如何在不使用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 + ';';
              }
        }
  }

善意的建议。

0 个答案:

没有答案