23

我有一个具有行扩展功能的PrimeNg turbotable 。

默认情况下如何扩展行。

这是我的代码:

HTML

<p-table [columns]="cols" [value]="cars" dataKey="vin">
<ng-template pTemplate="header" let-columns>
    <tr>
        <th style="width: 2.25em"></th>
        <th *ngFor="let col of columns">
            {{col.header}}
        </th>
    </tr>
</ng-template>
<ng-template pTemplate="body" let-rowData let-expanded="expanded" let-columns="columns">
    <tr>
        <td>
            <a href="#" [pRowToggler]="rowData">
                <i [ngClass]="expanded ? 'fa fa-fw fa-chevron-circle-down' : 'fa fa-fw fa-chevron-circle-right'"></i>
            </a>
        </td>
        <td *ngFor="let col of columns">
            {{rowData[col.field]}}
        </td>
    </tr>
</ng-template>
<ng-template pTemplate="rowexpansion" let-rowData let-columns="columns">
    <tr>
        <td [attr.colspan]="columns.length + 1">
            <div class="ui-g ui-fluid" style="font-size:16px;padding:20px">
                <div class="ui-g-12 ui-md-3" style="text-align:center">
                    <img [attr.alt]="rowData.brand" src="assets/showcase/images/demo/car/{{rowData.brand}}.png">
                </div>
                <div class="ui-g-12 ui-md-9">
                    <div class="ui-g">
                        <div class="ui-g-12">
                            <b>Vin:</b> {{rowData.vin}}
                        </div>
                        <div class="ui-g-12">
                            <b>Vin:</b> {{rowData.color}}
                        </div>
                        <div class="ui-g-12">
                            <b>Brand:</b> {{rowData.brand}}
                        </div>
                        <div class="ui-g-12">
                            <b>Color:</b> {{rowData.color}}
                        </div>
                    </div>
                </div>
            </div>
        </td>
    </tr>
  </ng-template>
</p-table>

TS

export class TableRowExpansionDemo implements OnInit {

    cars: Car[];

    cols: any[];

    constructor(private carService: CarService) { }

    ngOnInit() {
        this.carService.getCarsSmall().then(cars => this.cars = cars);

        this.cols = [
            { field: 'vin', header: 'Vin' },
            { field: 'year', header: 'Year' },
            { field: 'brand', header: 'Brand' },
            { field: 'color', header: 'Color' }
        ];
        }
    }
}

我尝试使用expandRowKeys属性,但它不适合我。

我在这里想念什么?

谢谢

4

3 回答 3

35

更新:对于版本 >7.x

将值设置为 1 不适用于版本 7+ 使用 boolean(true/false)

const thisRef = this;
 this.cars.forEach(function(car) {
   thisRef.expandedRows[car.vin] = true;
 });

工作堆栈闪电战

对于版本 <7.x

我尝试使用 expandRowKeys 属性

你是对的。所以添加[expandedRowKeys]="expandedRows">p-table元素:

<p-table [columns]="cols" [value]="cars" dataKey="vin" [expandedRowKeys]="expandedRows">

然后,您只需要用要扩展的行expandedRows的值填充对象(因为is )。vindataKeyvin

因为您希望所有行都被扩展,所以您可以像这样填充它:

    const thisRef = this;
    this.cars.forEach(function(car) {
      thisRef.expandedRows[car.vin] = 1;
    });

为了有类似的东西 expandedRows = {"dsad231ff": 1, "gwregre345": 1, ...}

见工作Plunker

于 2018-02-27T21:31:29.970 回答
3

在接受的答案中,expandedRows映射到 turbo 表expandRowKeys是一种方式,即它只能在加载时设置行的状态。如果有人想在加载表格后折叠或展开它,您可以通过从 html 传递表格引用来直接编辑“ expandedRowKeys ”变量。

使用引用变量#dt定义您的表

<p-table #dt [columns]="cols" [value]="cars" dataKey="vin">

像这样编辑表格主体以获得点击功能触发器

<ng-template pTemplate="body" let-rowData let-expanded="expanded" let-columns="columns">
    <tr>
        <td>
            <a href="#" [pRowToggler]="rowData">
                <i [ngClass]="expanded ? 'fa fa-fw fa-chevron-circle-down' : 'fa fa-fw fa-chevron-circle-right'"></i>
            </a>
        </td>
        <td *ngFor="let col of columns">
           <a >
              <span (click)="onItemClick(rowData, dt)">
                    {{rowData[col.field]}}    
              </span>
           </a>
        </td>
    </tr>
</ng-template>

在您的 TS 文件中添加函数为

onItemClick(rowData:any, dt:any) {
   if(dt.expandedRowKeys[rowData._id]){
     dt.expandedRowKeys[rowData._id] = 0;
   }
   else {
    dt.expandedRowKeys[rowData._id] = 1;
   }
}

这种方法使您可以更自由地根据来自表外部的事件触发器来更改表​​的状态,并一次展开或折叠多行。

于 2019-01-01T12:26:29.990 回答
1

在打了很多解决方案后,我尝试并找到了最简单的解决方法

<p-table [columns]="cols" [value]="cars" dataKey="vin" [expandedRowKeys]="expandedRows">

将 datakey 值替换为从服务或 http 调用获取的对象列表中的唯一 id 键。

<p-table [columns]="cols" [value]="repaymentsList" dataKey="id" expandableRows="true" rowExpandMode="single" [responsive]="true">
于 2019-06-27T11:06:09.633 回答