<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">
答案 0 :(得分:4)
经过一些代码测试后,我发现了一个问题,即我使用了lazy属性。
[lazy]="true"
因为filterGlobal无效。我有条件地true /false
做了懒惰参数。当lazy="false"
时,只有filterGlobal就像魅力一样。