如何冻结PrimeNg数据表中的列 - Angular 2?

时间:2016-07-28 09:23:20

标签: angular datatables primeng

在PrimeNg数据表中,是否可以冻结前几列并且其余部分具有水平scroll-x? 我想要与此完全相似:

https://datatables.net/extensions/fixedcolumns/examples/initialisation/two_columns.html

2 个答案:

答案 0 :(得分:1)

<p-dataTable [value]="..yoursource" [frozenWidth]="Set your frozen width in px" [unfrozenWidth]="Set your un frozen width in px">

    -- frozen column
    <p-column [header]="" [frozen]="true">
      <template>                      
      </template>
    </p-column>

   --unfrozen column
    <p-column>
    <p-column>

</p-dataTable>

答案 1 :(得分:0)

下面的代码将启用水平和垂直滚动的冻结列

在水平滚动中,给列设置固定的宽度很重要。通常,在自定义可滚动表的列宽时,请按如下所示使用colgroup以避免未对齐问题,因为它将在内部应用不同的单独元素的页眉,正文和页脚部分。

HTML Temple

<p-table [columns]="scrollableCols" [frozenColumns]="frozenCols" [value]="data" [scrollable]="true" scrollHeight="500px" frozenWidth="250px">
    <ng-template pTemplate="colgroup" let-columns>
        <colgroup>
            <col *ngFor="let col of columns" [style.width.px]="col.width">
        </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>

TS代码

frozenCols: any[];

scrollableCols: any[];

ngOnInit() {

    this.scrollableCols = [
        { field: 'year', header: 'Year', width: 250 },
        { field: 'brand', header: 'Brand', width: 250 },
        { field: 'color', header: 'Color', width: 250 },
        { field: 'year', header: 'Year', width: 250 },
        { field: 'brand', header: 'Brand', width: 250 },
        { field: 'color', header: 'Color', width: 250 }
    ];

    this.frozenCols = [
        { field: 'vin', header: 'Vin', width: 250 }
    ];

}

Check here for more