我目前有以下 PrimeNG TurboTable:
<p-table [value]="People" >
<ng-template pTemplate="header">
<tr>
<th>Name</th>
<th>Age</th>
<th>Height</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-col>
<tr>
<td>{{col.Name}}</td>
<td>{{col.Age}}</td>
<td>{{col.Height}}</td>
</tr>
</ng-template>
</p-table>
我需要能够在页面加载时按年龄列进行过滤,我该怎么做?我能找到的所有示例都显示使用(输入)或(onChange)标签(取自他们的网站):
<input type="text" pInputText size="50" placeholder="Global Filter" (input)="dt.filterGlobal($event.target.value, 'contains')" style="width:auto">
如何在加载时按列而不是在元素更改时进行过滤?
这是我引用的页面: https ://www.primefaces.org/primeng/#/table/filter
谢谢!