xiaolong 发表于 2023-8-1 19:11:08

整列颜色

vue项目,如何修改wijmo整列的背景色

Richard.Ma 发表于 2023-8-1 19:11:09

可以通过formatItem事件中,根据条件设置,示例参考

https://www.grapecity.com/wijmo/demos/Grid/CustomCells/DynamicUpdates/purejs

比如给第一列设置
    theGrid.formatItem.addHandler(function (s, e) {
      if(e.panel == s.cells&&e.col==0){
            e.cell.style.backgroundColor="red"
      }
}

xiaolong 发表于 2023-8-2 10:46:11

Richard.Ma 发表于 2023-8-2 10:16
可以通过formatItem事件中,根据条件设置,示例参考

https://www.grapecity.com/wijmo/demos/Grid/Custo ...

好的谢谢

Richard.Ma 发表于 2023-8-2 15:30:08

不客气
页: [1]
查看完整版本: 整列颜色