我想将p表VirtualScrolling与预先确定的列表一起使用,但是primeng网站给出的唯一示例是采用lazyload方法:
<p-table #table [columns]="columns" [value]="cars" [scrollable]="true"
[rows]="20" [scrollHeight]="scrollHeight" [virtualScroll]="true"
(onLazyLoad)="loadDataOnScroll($event)" [lazy]="true"
[totalRecords]="totalRecords" [virtualRowHeight]="30">
但是没有给出将p表virtuallScrolling与假定列表一起使用的示例。不使用p表的推测列表的示例。
<p-virtualScroller [value]="cars" scrollHeight="500px" [itemSize]="150">
<ng-template pTemplate="item" let-car>
Car content
</ng-template>
</p-virtualScroller>
有什么想法可以使用p表吗?
谢谢