您好我正在尝试将我的 PrimeNG 数据表转换为 turbo 表。实际上我已经 [hidden]="!cols.visibility"
在 PrimeNG 中使用了我的数据表。现在我应该用什么来在涡轮表中实现相同的目标。
以前的数据表列代码:
<p-column *ngFor="let col of cols" [hidden]="!col.visibility" [field]="col.field" [header]="col.header"></p-column>
● 文档网址:https ://www.primefaces.org/primeng/#/datatable
新的 Turbo 表列代码:
<ng-template pTemplate="header" let-cols>
<tr>
<th style="width: 2.25em"></th>
<th *ngFor="let col of cols">
{{col.header}}
</th>
</tr>
</ng-template>
● 文档网址: https ://www.primefaces.org/primeng/#/table
我应该使用什么?我也检查了文档,但没有找到解决方案。