File tree Expand file tree Collapse file tree 2 files changed +0
-15
lines changed
projects/igniteui-angular/src/lib/grids/pivot-grid Expand file tree Collapse file tree 2 files changed +0
-15
lines changed Original file line number Diff line number Diff line change 106
106
</ div >
107
107
</ ng-template >
108
108
109
- < ng-template #headerTemplateGray let-column >
110
- < div class ='igx-grid__tr--header igx-grid__row-indentation--level-{{getLevel(column)}} '>
111
- < igx-icon style ='flex-shrink: 0; ' [attr.draggable] ="false "> </ igx-icon >
112
- {{column.header}}
113
- </ div >
114
- </ ng-template >
115
-
116
109
< ng-template #headerDefaultTemplate let-column >
117
110
118
111
< div class ='igx-grid__tr--header igx-grid__row-indentation--level-{{getLevel(column)}} '>
Original file line number Diff line number Diff line change @@ -39,12 +39,6 @@ export class IgxPivotRowComponent extends IgxRowDirective implements OnChanges {
39
39
@ViewChild ( 'headerTemplate' , { read : TemplateRef , static : true } )
40
40
public headerTemplate : TemplateRef < any > ;
41
41
42
- /**
43
- * @hidden @internal
44
- */
45
- @ViewChild ( 'headerTemplateGray' , { read : TemplateRef , static : true } )
46
- public headerTemplateGray : TemplateRef < any > ;
47
-
48
42
/**
49
43
* @hidden @internal
50
44
*/
@@ -162,8 +156,6 @@ export class IgxPivotRowComponent extends IgxRowDirective implements OnChanges {
162
156
( ref as any ) . instance . _vIndex = this . grid . columns . length + index + this . index * this . grid . pivotConfiguration . rows . length ;
163
157
if ( dim . childLevel && lvl >= PivotUtil . getTotalLvl ( this . data ) ) {
164
158
ref . instance . headerTemplate = this . headerTemplate ;
165
- } else if ( lvl < PivotUtil . getTotalLvl ( this . data ) ) {
166
- ref . instance . headerTemplate = this . headerTemplateGray ;
167
159
} else {
168
160
ref . instance . headerTemplate = this . headerTemplateDefault ;
169
161
}
You can’t perform that action at this time.
0 commit comments