We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0157fe commit fd6c02fCopy full SHA for fd6c02f
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -190,7 +190,8 @@ export class IgxGridNavigationService {
190
191
public focusEditableTarget(rowIndex: number, columnIndex: number) {
192
if (this.isColumnFullyVisible(columnIndex)) {
193
- this.getCellElementByVisibleIndex(rowIndex, columnIndex).focus();
+ const cell = this.getCellElementByVisibleIndex(rowIndex, columnIndex);
194
+ if (cell) { cell.focus(); }
195
} else {
196
this.performHorizontalScrollToCell(rowIndex, columnIndex);
197
}
0 commit comments