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 3218448 + d3a0691 commit 558bea8Copy full SHA for 558bea8
projects/igniteui-angular/src/lib/grids/grid-navigation.service.ts
@@ -75,6 +75,13 @@ export class IgxGridNavigationService {
75
event.preventDefault();
76
key === 'pagedown' ? this.grid.verticalScrollContainer.scrollNextPage() :
77
this.grid.verticalScrollContainer.scrollPrevPage();
78
+ const editCell = this.grid.crudService.cell;
79
+ this.grid.verticalScrollContainer.onChunkLoad
80
+ .pipe(first()).subscribe(() => {
81
+ if (editCell && this.grid.rowList.map(r => r.index).indexOf(editCell.rowIndex) < 0) {
82
+ this.grid.tbody.nativeElement.focus({preventScroll: true});
83
+ }
84
+ });
85
break;
86
case 'tab':
87
this.handleEditing(shift, event);
0 commit comments