Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions projects/igniteui-angular/src/lib/grids/cell.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Comment thread
IMinchev64 marked this conversation as resolved.
Outdated
Comment thread
IMinchev64 marked this conversation as resolved.
Outdated
}

/**
Expand Down
Loading