AutoLayout无法在PrimeNG TurboTable中运行

时间:2018-04-11 15:52:29

标签: angular primeng primeng-turbotable

我无法让autoLayout在新的TurboTable for PrimeNG中工作。无论内容和浏览器宽度如何,所有列都具有相同的宽度。

我已尝试[autoLayout]="true"以及autoLayout="true"。两者都不起作用。

我使用的是最新的PrimeNG版本(5.2.4)

这是我的HTML:

<p-card>
    <p-header>
        <div style="padding: 15px; padding-bottom: 0px">
            <button pButton
                    type="button"
                    label="Add New"
                    class="ui-button-info"
                    icon="fa-plus"
                    [routerLink]="['/users/edit', 0]"></button>
        </div>
    </p-header>
    <p-table [columns]="cols"
             [value]="users"
             [autoLayout]="true"
             [(selection)]="selectedUser"
             selectionMode="single"
             [style]="{'height':'600px'}"
             [scrollable]="true"
             scrollHeight="580px"
             [rows]="20"
             (onRowSelect)="handleOnUsersRowSelect($event)">
        <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 [pSelectableRow]="rowData">
                <td *ngFor="let col of columns" style="text-align: center">
                    {{col.field == 'isActive' ? (rowData[col.field] ? 'Yes' : 'No'): rowData[col.field] }}
                </td>
            </tr>
        </ng-template>
    </p-table>
</p-card>

1 个答案:

答案 0 :(得分:4)

出于技术原因,scrollableresizable属性与autoLayout属性不兼容。

这在PrimeNg网站上有记录。