0

如何通过更改单元格值在 jqxGrid(jqwidget)单元格中动态填充自定义颜色?

4

2 回答 2

1

如果要根据值设置单元格的背景颜色,则可以只为列使用自定义渲染器。

cellsrenderer: function(row, column, value) {
  var color = getColorForValue(value),     //function you write to determine the color
      display = getDisplayForValue(value); // function you write to determine what's displayed [optional]
  return '<div style="background-color: ' + color + '">' + display + '</div>';
} 
于 2014-11-03T18:06:31.577 回答
0

我建议您更改单元格颜色、背景或其他一些 CSS 样式以使用“cellclassname”。示例:http ://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/gridcellclass.htm?arctic

于 2014-11-06T06:49:12.763 回答