Ag Grid更改编辑的单元格颜色并保存样式

时间:2019-07-18 10:09:04

标签: angular ag-grid

我需要为编辑后的单元格提供背景颜色 我找到了这种方法,但是它改变了已编辑单元格的列颜色。

const cell = params.api.getFocusedCell();
if (params.oldValue !== params.newValue) {
cell.column.colDef.cellStyle = {fontWeight: '550',background: 'coral'};
params.api.redrawRows()
}
params.api.refreshCells(cell);
}

1 个答案:

答案 0 :(得分:0)

尝试更改

cell.column.colDef.cellStyle = {fontWeight: '550',background: 'coral'};

对于

cell.style.background = 'coral';
cell.style.fontWeight = '550';