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 489cbad commit 1263272Copy full SHA for 1263272
projects/igniteui-angular/src/lib/grids/filtering/excel-style/excel-style-column-moving.component.ts
@@ -55,6 +55,9 @@ export class IgxExcelStyleColumnMovingComponent {
55
}
56
} else if (this.grid.unpinnedColumns.indexOf(this.column) === 0 && moveDirection === 0) {
57
targetColumn = this.grid.pinnedColumns[this.grid.pinnedColumns.length - 1];
58
+ if (targetColumn.parent) {
59
+ targetColumn = targetColumn.topLevelParent;
60
+ }
61
moveDirection = 1;
62
} else {
63
targetColumn = this.findColumn(moveDirection, this.grid.unpinnedColumns);
0 commit comments