ag grid 仅对 1 个单元格应用列定义 属性
ag grid apply column definition property for only 1 cell
我们如何使用 ag 网格仅对 1 个单元格启用或禁用 [=14=] 属性?
我知道,例如,对于样式,我们只能在回调中更改 1 个单元格的单元格样式,如下所示:
column.cellStyle = function (params) {
if (some condition) {
return '{ border: '1px solid red'};
} else {
return '{ border: '1px solid green'};
}
使用editable
属性:
column.editable = function (params) {
if (params.node.childIndex % 2) {
return true;
} else {
return false;
}
此示例将使每隔一行都可编辑。
相似question and answer
我们如何使用 ag 网格仅对 1 个单元格启用或禁用 [=14=] 属性? 我知道,例如,对于样式,我们只能在回调中更改 1 个单元格的单元格样式,如下所示:
column.cellStyle = function (params) {
if (some condition) {
return '{ border: '1px solid red'};
} else {
return '{ border: '1px solid green'};
}
使用editable
属性:
column.editable = function (params) {
if (params.node.childIndex % 2) {
return true;
} else {
return false;
}
此示例将使每隔一行都可编辑。
相似question and answer