我正在做一个项目,我使用PrimeNg
了具有冻结和解冻列属性的表,并且它在正常列创建中工作正常,*NgFor
但是如果我添加新列而不*NgFor
在冻结和解冻表中重复。
如何克服这个问题,因为我只希望该列在冻结列上而不是在解冻列上。
我的代码:
<ng-template pTemplate="header" let-columns>
<tr>
<th>All</th>
<th *ngFor="let col of columns">
{{col.header}}
</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-rowData let-columns="columns">
<tr>
<td>
<p-tableCheckbox
[value]="rowData"
[attr.disabled]="
rowData.setupType === 'No Action' &&
rowData.currentStatus === 'INACTIVE'
? 'disabled'
: null
"
></p-tableCheckbox>
</td>
<td *ngFor="let col of columns">
{{rowData[col.field]}}
</td>
</tr>
</ng-template>
列重复问题:
如何克服这个问题?
如果可能的话,请指导我PrimeNg
。