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 a34da2c commit 926a811Copy full SHA for 926a811
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -2911,10 +2911,10 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
2911
}
2912
2913
public setFilteredSortedData(data, pinned: boolean) {
2914
- if (this.pinnedRows.length > 0 && pinned) {
+ if (this._pinnedRecordIDs.length > 0 && pinned) {
2915
this._filteredSortedPinnedData = data;
2916
this.filteredSortedData = [... this._filteredSortedPinnedData, ... this._filteredSortedUnpinnedData];
2917
- } else if (this.pinnedRows.length > 0 && !pinned) {
+ } else if (this._pinnedRecordIDs.length > 0 && !pinned) {
2918
this._filteredSortedUnpinnedData = data;
2919
} else {
2920
this.filteredSortedData = data;
0 commit comments