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 e7eda38 + dd37bf2 commit 28a7218Copy full SHA for 28a7218
projects/igniteui-angular/src/lib/grids/hierarchical-grid/hierarchical-grid-navigation.service.ts
@@ -39,7 +39,7 @@ export class IgxHierarchicalGridNavigationService extends IgxGridNavigationServi
39
if (rec && this.grid.isChildGridRecord(rec)) {
40
// target is child grid
41
const virtState = this.grid.verticalScrollContainer.state;
42
- const inView = rowIndex >= virtState.startIndex && rowIndex < virtState.startIndex + virtState.chunkSize;
+ const inView = rowIndex >= virtState.startIndex && rowIndex <= virtState.startIndex + virtState.chunkSize;
43
const isNext = this.activeNode.row < rowIndex;
44
const targetLayoutIndex = isNext ? null : this.grid.childLayoutKeys.length - 1;
45
if (inView) {
0 commit comments