我是业力的新手,我想为primeng表运行测试。在某些情况下需要帮助。
1.验证标题
2.要验证第一列中的复选框
3.验证重复的行数/数据
<section>
<p-table #dt [columns]="columns" [value]="data" id="accountsTable" formcontrolname="myTable">
<ng-template pTemplate="header" let-columns>
<tr>
<th class="actionColumn">
</th>
<th *ngFor="let col of columns" [width]="col.width ? col.width : ''">
{{col.header}}
</th>
</tr>
</ng-template>
</p-table>
</section>