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.
2 parents 955c48c + 3c713b5 commit c631ee8Copy full SHA for c631ee8
projects/igniteui-angular/src/lib/grids/grid-base.directive.ts
@@ -5536,7 +5536,7 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
5536
let columnIndex = typeof column === 'number' ? column : this.getColumnByName(column).visibleIndex;
5537
const scrollRow = this.rowList.find(r => r.virtDirRow);
5538
const virtDir = scrollRow ? scrollRow.virtDirRow : null;
5539
- if (this.pinnedColumns.length) {
+ if (this.isPinningToStart && this.pinnedColumns.length) {
5540
if (columnIndex >= this.pinnedColumns.length) {
5541
columnIndex -= this.pinnedColumns.length;
5542
this.scrollDirective(virtDir, columnIndex);
0 commit comments