【问题标题】:Mat-table-exporter CSV exporting checkbox representation of a booleanMat-table-exporter CSV 导出布尔值的复选框表示
【发布时间】:2020-07-10 10:47:24
【问题描述】:
【问题讨论】:
标签:
angular7
export-to-csv
mat-table
【解决方案2】:
在我的复选框起作用之前添加它。
<ng-container matColumnDef="hot">
<mat-header-cell *matHeaderCellDef mat-sort-header> Hot </mat-header-cell>
<mat-cell *matCellDef="let row">
<!-- added this line in -->
<span class="cdk-visually-hidden">{{row.hot}}</span>
<mat-checkbox (click)="$event.stopPropagation()" disabled="true [checked]="row.hot">
</mat-checkbox>
</mat-cell>
</ng-container>