【发布时间】:2018-11-18 19:35:18
【问题描述】:
<p-table #dt [scrollable]="true" scrollHeight="232px" [columns]="cols" [value]="packageList" selectionMode="single" [responsive]="true"
[paginator]="false" [rows]="noOfRow" sortField="id" sortOrder="-1"
[lazy]="true" (onLazyLoad)="loadPackageList($event)" [totalRecords]="totalRecords">
我在这里输入了代码来使用这么多属性。
我需要使用全局过滤器,但它不起作用。
<input type="text" pInputText size="50" placeholder="Global Filter" (input)="dt.filterGlobal($event.target.value, 'contains')" style="width:auto">
【问题讨论】:
标签: primeng