The PrimeNG data table is not updating and changing the number of displayed items when the items per page dropdown is changed.
There are no console errors or any indication there is something set wrong.
<p-dataTable #dt [value]="bols" exportFilename="bols" selectionMode="single" [(selection)]="selectedBol" (onRowSelect)="onRowSelect($event)" [paginator]="true" [rows]="20" [responsive]="true" [globalFilter]="gb" [contextMenu]="cm" [rowsPerPageOptions]="[10,20,30,40,50]">
I have not configured a callback to handle the change since I did not believe that this was necessary. Once the items per page is changed navigation to any other page does resize the result set appropriately.
Thanks