diff --git a/src/Providers/DataGrid/Wijmo/Features/ValidationMark.ts b/src/Providers/DataGrid/Wijmo/Features/ValidationMark.ts index eca448c6..9f3479d3 100644 --- a/src/Providers/DataGrid/Wijmo/Features/ValidationMark.ts +++ b/src/Providers/DataGrid/Wijmo/Features/ValidationMark.ts @@ -633,8 +633,7 @@ namespace Providers.DataGrid.Wijmo.Feature { // This method gets executed by an API. No values change in columns, so the current value and the original one (old value) are the same. const currValue = this._grid.provider.getCellData(rowNumber, column.provider.index, false); - // Triggers the events of OnCellValueChange associated to a specific column in OS - this._triggerEventsFromColumn(rowNumber, column.uniqueId, currValue, currValue); + this._setCellStatus(column, rowNumber, currValue); } }); }