diff --git a/projects/igniteui-angular/src/lib/grids/cell.component.ts b/projects/igniteui-angular/src/lib/grids/cell.component.ts index d7e4071e662..264604ac0a3 100644 --- a/projects/igniteui-angular/src/lib/grids/cell.component.ts +++ b/projects/igniteui-angular/src/lib/grids/cell.component.ts @@ -1173,6 +1173,11 @@ export class IgxGridCellComponent implements OnInit, OnChanges, OnDestroy, CellT if (this.grid.isCellSelectable && shouldEmitSelection) { this.zone.run(() => this.grid.selected.emit({ cell: this.getCellType(), event })); } + + const isKeyboardActivation = event?.type === 'keydown'; + if (isKeyboardActivation) { + this.grid.notifyChanges(); + } } /**