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 672ae89 commit 13f2c8cCopy full SHA for 13f2c8c
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -6942,7 +6942,7 @@ export abstract class IgxGridBaseDirective extends DisplayDensityBase implements
6942
6943
// eslint-disable-next-line prefer-const
6944
for (let [row, set] of selectionMap) {
6945
- row = this.paginator ? row + (this.paginator.perPage * this.paginator.page) : row;
+ row = this.paginator && source === this.filteredSortedData ? row + (this.paginator.perPage * this.paginator.page) : row;
6946
row = isRemote ? row - this.virtualizationState.startIndex : row;
6947
if (!source[row] || source[row].detailsData !== undefined) {
6948
continue;
0 commit comments