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 b695601 commit 1c8b3b2Copy full SHA for 1c8b3b2
projects/igniteui-angular/src/lib/grids/columns/column-group.component.ts
@@ -163,6 +163,10 @@ export class IgxColumnGroupComponent extends IgxColumnComponent implements After
163
if (this.headTemplate && this.headTemplate.length) {
164
this._headerTemplate = this.headTemplate.toArray()[0].template;
165
}
166
+ // currently only ivy fixes the issue, we have to slice only if the first child is group
167
+ if (this.children.first.columnGroup) {
168
+ this.children.reset(this.children.toArray().slice(1));
169
+ }
170
this.children.forEach(child => {
171
child.parent = this;
172
});
0 commit comments