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 9bebb0f commit 460332fCopy full SHA for 460332f
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -5480,6 +5480,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
5480
}
5481
5482
for (let [row, set] of selectionMap) {
5483
+ row = this.paging ? row + (this.perPage * this.page) : row;
5484
row = isRemote ? row - this.virtualizationState.startIndex : row;
5485
if (!source[row] || source[row].detailsData !== undefined) {
5486
continue;
0 commit comments