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 4bea53a commit 7a07636Copy full SHA for 7a07636
projects/igniteui-angular/src/lib/grids/headers/grid-header-group.component.html
@@ -32,6 +32,10 @@
32
[ghostHost]="grid.outletDirective.nativeElement"
33
[attr.droppable]="true"
34
[igxColumnMovingDrop]="column">
35
+ <ng-container *ngIf="column.collapsible">
36
+ <igx-icon [attr.draggable]="false" (click)="column.expanded = !column.expanded">
37
+ {{column.expanded ? 'expand_less' : 'expand_more'}} </igx-icon>
38
+ </ng-container>
39
<ng-container *ngTemplateOutlet="column.headerTemplate ? column.headerTemplate : defaultColumn; context: { $implicit: column, column: column}">
40
</ng-container>
41
</div>
0 commit comments