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