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 8e998d6 commit d478f6fCopy full SHA for d478f6f
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -7207,7 +7207,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
7207
// find next/prev record that is editable.
7208
const nextRowIndex = previous ? this.findPrevEditableDataRowIndex(currentRowIndex) :
7209
this.dataView.findIndex((rec, index) =>
7210
- index > resolvedIndex && this.isEditableDataRecordAtIndex(resolvedIndex));
+ index > resolvedIndex && this.isEditableDataRecordAtIndex(index));
7211
const nextDataIndex = this.getDataIndex(nextRowIndex);
7212
return nextDataIndex !== -1 ? nextDataIndex : currentRowIndex;
7213
}
0 commit comments