p-table Column Reorder和Column Resize不起作用

问题描述 投票:-1回答:1

我有一个问题,数据表有列重新排序和列调整大小不起作用。我也尝试启用和禁用其中一个..重现问题的项目

https://stackblitz.com/edit/angular-ptable?file=src%2Fapp%2Fapp.component.html

angular primeng
1个回答
1
投票

https://stackblitz.com/edit/angular-ptable-3ft2xt

<tr>
            <th *ngFor="let col of columns" **pReorderableColumn pResizableColumn** >
                {{col.header}}
               <p-sortIcon [field]="col.field"
                  ariaLabel="Activate to sort" 
                  ariaLabelDesc="Activate to sort in descending order" 
                  ariaLabelAsc="Activate to sort in ascending order">
                </p-sortIcon>
            </th>
        </tr>
© www.soinside.com 2019 - 2024. All rights reserved.