Skip to content

Commit a84976d

Browse files
committed
fix(column-group): hide children if parent is hidden initially
1 parent 563d7d3 commit a84976d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/igniteui-angular/src/lib/grids/columns/column-group.component.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,9 @@ export class IgxColumnGroupComponent extends IgxColumnComponent implements After
285285
if (this.pinned) {
286286
child.pinned = this.pinned;
287287
}
288+
if (this._hidden) {
289+
child.hidden = this._hidden;
290+
}
288291
});
289292
if (this.collapsible) {
290293
this.setExpandCollapseState();

0 commit comments

Comments
 (0)