|
84 | 84 | <span *ngIf="grid.rowDimensions.length === 0 && grid.showPivotConfigurationUI" class='igx-pivot__emptyChipArea'>Drop Row Fields here.</span> |
85 | 85 |
|
86 | 86 | <!-- Row area --> |
87 | | - <igx-chips-area *ngIf="grid.showPivotConfigurationUI" #rowArea droppable='true'> |
88 | | - <igx-chip *ngFor="let row of grid.rowDimensions" [draggable]="true" [id]="row.memberName" |
89 | | - [displayDensity]="grid.displayDensity" |
90 | | - [removable]="true" (remove)="rowRemoved($event)" |
91 | | - (dragLeave)="onDimDragLeave($event)" |
92 | | - (dragDrop)="onDimDrop($event, rowArea, 0)" |
93 | | - (dragOver)="onDimDragOver($event, 0)" |
94 | | - (click)="onChipSort($event, row, 0)"> |
95 | | - <igx-icon igxPrefix>table_rows</igx-icon> |
96 | | - <igx-icon igxPrefix (pointerdown)='onFilteringIconPointerDown($event)' (click)='onFilteringIconClick($event, row)'>filter_list</igx-icon> |
97 | | - {{ row.memberName}} |
98 | | - <igx-icon *ngIf="row.sortDirection" igxSuffix> {{ row.sortDirection < 2 ? 'arrow_upward' : 'arrow_downward' }}</igx-icon> |
99 | | - </igx-chip> |
| 87 | + <igx-chips-area #rowArea droppable='true'> |
| 88 | + <ng-container *ngIf="grid.showPivotConfigurationUI"> |
| 89 | + <igx-chip *ngFor="let row of grid.rowDimensions" [draggable]="true" [id]="row.memberName" |
| 90 | + [displayDensity]="grid.displayDensity" |
| 91 | + [removable]="true" (remove)="rowRemoved($event)" |
| 92 | + (dragLeave)="onDimDragLeave($event)" |
| 93 | + (dragDrop)="onDimDrop($event, rowArea, 0)" |
| 94 | + (dragOver)="onDimDragOver($event, 0)" |
| 95 | + (click)="onChipSort($event, row, 0)"> |
| 96 | + <igx-icon igxPrefix>table_rows</igx-icon> |
| 97 | + <igx-icon igxPrefix (pointerdown)='onFilteringIconPointerDown($event)' (click)='onFilteringIconClick($event, row)'>filter_list</igx-icon> |
| 98 | + {{ row.memberName}} |
| 99 | + <igx-icon *ngIf="row.sortDirection" igxSuffix> {{ row.sortDirection < 2 ? 'arrow_upward' : 'arrow_downward' }}</igx-icon> |
| 100 | + </igx-chip> |
| 101 | + </ng-container> |
100 | 102 | </igx-chips-area> |
101 | 103 | </div> |
102 | 104 |
|
|
0 commit comments