我目前正在使用具有冻结列功能的 PrimeNG 表控件。
一切正常,我能够获得冻结列,但现在我想修改我在下面属性中使用的冻结和解冻列样式以及列的自定义宽度。
代码:
<p-table [columns]="scrollableCols" [frozenColumns]="frozenCols" [value]="cars" [scrollable]="true" scrollHeight="300px" frozenWidth="250px">
<ng-template pTemplate="colgroup" let-columns>
<colgroup>
<col style="width:200px">
<col style="width:50px">
<col style="width:100px">
<col style="width:100px">
<col style="width:100px">
<col style="width:100px">
</colgroup>
</ng-template>
<ng-template pTemplate="header" let-columns>
<tr>
<th *ngFor="let col of columns">
{{col.header}}
</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-rowData let-columns="columns">
<tr>
<td *ngFor="let col of columns">
{{rowData[col.field]}}
</td>
</tr>
</ng-template>
</p-table>
通过使用宽度,我可以实现列的宽度,但是对于前 2 列,冻结和解冻列表都会自动为所有 2 列采用相同的宽度我想在冻结和解冻列中分配不同大小的列.
是否可以为冻结和解冻列添加不同尺寸?