File tree Expand file tree Collapse file tree 2 files changed +306
-111
lines changed
projects/igniteui-angular/src/lib/grids/pivot-grid Expand file tree Collapse file tree 2 files changed +306
-111
lines changed Original file line number Diff line number Diff line change @@ -1126,6 +1126,7 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
1126
1126
this . reflow ( ) ;
1127
1127
}
1128
1128
this . pipeTrigger ++ ;
1129
+ this . cdr . detectChanges ( ) ;
1129
1130
}
1130
1131
1131
1132
/**
@@ -1267,7 +1268,7 @@ export class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIni
1267
1268
protected getDimensionType ( dimension : IPivotDimension ) : PivotDimensionType {
1268
1269
return PivotUtil . flatten ( this . rowDimensions ) . indexOf ( dimension ) !== - 1 ? PivotDimensionType . Row :
1269
1270
PivotUtil . flatten ( this . columnDimensions ) . indexOf ( dimension ) !== - 1 ? PivotDimensionType . Column :
1270
- PivotUtil . flatten ( this . columnDimensions ) . indexOf ( dimension ) !== - 1 ? PivotDimensionType . Filter : null ;
1271
+ PivotUtil . flatten ( this . filterDimensions ) . indexOf ( dimension ) !== - 1 ? PivotDimensionType . Filter : null ;
1271
1272
}
1272
1273
1273
1274
protected getLargesContentWidth ( contents : ElementRef [ ] ) : string {
You can’t perform that action at this time.
0 commit comments