File tree 2 files changed +6
-1
lines changed
projects/igniteui-angular/src/lib/grids
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 5
5
[ngStyle] ="{'grid-template-rows':column.getGridTemplate(true, false),
6
6
'grid-template-columns':column.getGridTemplate(false, false),
7
7
'-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 } ">
9
10
< ng-container *ngFor ="let child of column.children " >
10
11
< igx-grid-header-group *ngIf ="!child.hidden " class ="igx-grid__thead-subgroup "
11
12
[column] ="child "
Original file line number Diff line number Diff line change @@ -176,6 +176,10 @@ export class IgxGridHeaderGroupComponent implements DoCheck {
176
176
return this . grid . hasColumnLayouts && this . column . children && ! isIE ( ) ? 'flex' : '' ;
177
177
}
178
178
179
+ get mrlBlockHeight ( ) {
180
+ return this . grid . hasColumnLayouts && this . column . children && isIE ( ) ? '100%' : '' ;
181
+ }
182
+
179
183
/**
180
184
* Gets whether the header group is stored in a pinned column.
181
185
* @memberof IgxGridHeaderGroupComponent
You can’t perform that action at this time.
0 commit comments