在extjs中更改表单中每个单元格的背景颜色

时间:2014-04-03 08:52:24

标签: extjs4

在用于更改单元格背景颜色的网格中,我们的代码如下:

   .later .x-grid-cell {
         background-color: #FFB0C4 !important;     
   } 
   .now .x-grid-cell {
         background-color: #5491BD !important;     
   }

是否有类似的改变表格中每个单元格的背景颜色?

2 个答案:

答案 0 :(得分:0)

尝试设置fieldStyle:

fieldStyle: 'background-color: #ddd; background-image: none;'

答案 1 :(得分:0)

我认为该属性是

.value .x-form-field{
    background : red;
}

如果将cls更改为value,则必须更改每个字段的背景。

如果要单独更改每个字段,则必须添加fieldStyle属性

fieldStyle: 'background: blue;'

在这个小提琴中有一个例子 http://jsfiddle.net/lisssb/Ln6PT/4/

我希望这个帮助