File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 55 [ngStyle] ="{'grid-template-rows':column.getGridTemplate(true, false),
66 'grid-template-columns':column.getGridTemplate(false, false),
77 '-ms-grid-rows':column.getGridTemplate(true, true),
8- '-ms-grid-columns':column.getGridTemplate(false, true)} ">
8+ '-ms-grid-columns':column.getGridTemplate(false, true),
9+ 'height': mrlBlockHeight } ">
910 < ng-container *ngFor ="let child of column.children " >
1011 < igx-grid-header-group *ngIf ="!child.hidden " class ="igx-grid__thead-subgroup "
1112 [column] ="child "
Original file line number Diff line number Diff line change @@ -176,6 +176,10 @@ export class IgxGridHeaderGroupComponent implements DoCheck {
176176 return this . grid . hasColumnLayouts && this . column . children && ! isIE ( ) ? 'flex' : '' ;
177177 }
178178
179+ get mrlBlockHeight ( ) {
180+ return this . grid . hasColumnLayouts && this . column . children && isIE ( ) ? '100%' : '' ;
181+ }
182+
179183 /**
180184 * Gets whether the header group is stored in a pinned column.
181185 * @memberof IgxGridHeaderGroupComponent
You can’t perform that action at this time.
0 commit comments