AG-grid-angular6-颜色更改以在刷新网格时闪烁

时间:2018-12-13 22:23:30

标签: angular ag-grid

我正在使用

 [enableCellChangeFlash]="true" 

然后做

  var params = { force: true };
  this.gridApi.refreshCells(params);

用于强制刷新所有单元格。

正在发生刷新,但是颜色为绿色或绿色。 有没有办法改变这种默认颜色?

示例可以在这里查看:https://www.ag-grid.com/javascript-grid-refresh/

3 个答案:

答案 0 :(得分:1)

看看我创建的小块:Refresh Cells - override color

您需要更新CSS

.ag-theme-balham-dark .ag-row .ag-cell-data-changed {
    background-color: red !important;
}

.ag-theme-balham-dark .ag-cell-data-changed { ... }不起作用,因为应用具有!important的样式。我们还需要覆盖它。

答案 1 :(得分:1)

基于my another post

styles: [`
    .ag-theme-balham-dark .ag-cell-data-changed {
        background-color:red !important;
    }
`],

DEMO

答案 2 :(得分:0)

以下为我工作:

.ag-value-change-value-highlight {
 background-color:red !important;
}