igniteui-angular 12.3.10 → 12.3.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -54572,7 +54572,8 @@ class IgxGridBaseDirective extends DisplayDensityBase {
54572
54572
  }
54573
54573
  // eslint-disable-next-line prefer-const
54574
54574
  for (let [row, set] of selectionMap) {
54575
- row = this.paginator && source === this.filteredSortedData ? row + (this.paginator.perPage * this.paginator.page) : row;
54575
+ row = this.paginator && (this.pagingMode === GridPagingMode.Local && source === this.filteredSortedData) ?
54576
+ row + (this.paginator.perPage * this.paginator.page) : row;
54576
54577
  row = isRemote ? row - this.virtualizationState.startIndex : row;
54577
54578
  if (!source[row] || source[row].detailsData !== undefined) {
54578
54579
  continue;