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