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.
2 parents 694c029 + 61f5406 commit 7475465Copy full SHA for 7475465
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -87,6 +87,13 @@ export class IgxGridNavigationService {
87
event.preventDefault();
88
key === 'pagedown' ? this.grid.verticalScrollContainer.scrollNextPage() :
89
this.grid.verticalScrollContainer.scrollPrevPage();
90
+ const editCell = this.grid.crudService.cell;
91
+ this.grid.verticalScrollContainer.onChunkLoad
92
+ .pipe(first()).subscribe(() => {
93
+ if (editCell && this.grid.rowList.map(r => r.index).indexOf(editCell.rowIndex) < 0) {
94
+ this.grid.tbody.nativeElement.focus({preventScroll: true});
95
+ }
96
+ });
97
break;
98
case 'tab':
99
this.handleEditing(shift, event);
0 commit comments