我的英语很差
我正在使用带有分页器的p表,但是我需要更改分页。 html代码
<p-table #dt [columns]="cols" [value]="values"
[paginator]="true"
[rows]="10"
(onFilter)="filtrado($event)"
[scrollable]="true"
[style]="{'width':'100%'}"
>
......
</p-table>
和ts
@ViewChild('dt') dt: Table;
但是我不知道该怎么做。
答案 0 :(得分:1)
您应该使用first
输入属性。它必须取决于您的pageSize * n
,其中n是您所需的页码。
<p-table #dt [columns]="cols" [value]="values"
[paginator]="true"
[first]="first"
[rows]="10"
(onFilter)="filtrado($event)"
[scrollable]="true"
[style]="{'width':'100%'}"
>
......
this.first = this.pageSize * 2;
显示第2页。依此类推。