primeng表根据用户选择保留列宽

时间:2019-11-08 03:53:42

标签: angular primeng primeng-datatable

我对primeNG表有问题。该表有很多列,在列切换时,列宽正在变化,表看起来像一团糟。

该表为Scrollable和Resizable,因此根据文档,由于技术原因,不支持自动布局。

因此,也许有一些解决方法,或者当用户手动更改列大小时,是否有保留列大小的方法。 任何帮助或想法.. 请参阅stackblitz项目以进行复制

enter image description here https://stackblitz.com/edit/angular-primeng-width-rjgg7f?file=src/app/app.component.ts

    <p-table #dt [columns]="selectedColumns" [value]="carsData" [paginator]="true" [rows]="10"[scrollable]="true" scrollHeight="200px" [resizableColumns]="true">
        <ng-template pTemplate="caption">

            <div style="text-align:left">
                <p-multiSelect [options]="columns" [(ngModel)]="selectedColumns" optionLabel="header"
                    selectedItemsLabel="{0} columns selected" [style]="{minWidth: '200px'}"
                    defaultLabel="Choose Columns"></p-multiSelect>
            </div>

        </ng-template>
  <ng-template pTemplate="colgroup" let-columns>
                <colgroup>
                    <col *ngFor="let col of columns" [ngStyle]="{'width': col.width}">
                </colgroup>
            </ng-template>
        <ng-template pTemplate="header" let-columns>
            <tr>
         <th rowspan="2" style="width:10%;text-align: center" pResizableColumn>
            </th>
                <th *ngFor="let col of columns" pResizableColumn>
                    {{col.header}}
                </th>
            </tr>
        </ng-template>
        <ng-template pTemplate="body" let-rowData let-columns="columns" >
            <tr>
        <td (click)="onRowSelectAction(rowData)">
                <div id="btnwrap" style="width:100%">
                    <p-menu #menu [popup]="true" [model]="items" appendTo="body"></p-menu>
                    <button type="button" pButton icon="pi pi-ellipsis-h"
                        style="margin-left:2px;margin-top:2px;text-align: center" [label]="additionalButtonTitle"
                        (click)="menu.toggle($event)" class="btn btn-dark">
                    </button>

                </div>
            </td>
                <td *ngFor="let col of columns" class="ui-resizable-column" class="ui-resizable-column">
                    {{rowData[col.field]}}
                </td>
            </tr>
        </ng-template>
    </p-table>

2 个答案:

答案 0 :(得分:0)

我看不到这个问题,对我来说很好。请检查。

enter image description here

查看更新的图像,仅显示5列的列宽,而显示6列。

enter image description here

答案 1 :(得分:0)

我发现了问题,这是包含操作按钮的第一列。我在pTemplate =“ header”中设置了列样式,但需要在pTemplate =“ colgroup”

中设置

更新了pTemplate =“ colgroup”

 <ng-template pTemplate="colgroup" let-columns>
            <colgroup>
               <col style="width:4%;text-align: center">
               <col *ngFor="let col of columns" [ngStyle]="{'width': col.width}">
     </colgroup>
   </ng-template>

更新了pTemplate =“ header”

<ng-template pTemplate="header" let-columns>
            <tr>
         <th rowspan="2" pResizableColumn>
            </th>
                <th *ngFor="let col of columns" pResizableColumn>
                    {{col.header}}
                </th>
            </tr>
    </ng-template>