整列颜色
vue项目,如何修改wijmo整列的背景色 可以通过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"
}
} Richard.Ma 发表于 2023-8-2 10:16
可以通过formatItem事件中,根据条件设置,示例参考
https://www.grapecity.com/wijmo/demos/Grid/Custo ...
好的谢谢 不客气
页:
[1]