Taking a look at this example: Blazor DataGrid pager API (radzen.com) When you change the "Items Per Page" the grid reloads with the chosen number per page.
When I use the out of the box data grid and change the items per page I see the number of pages change however the grid shown does not update to the number of items until I choose another page. I'm missing something any tips?
<RadzenDataGrid @ref="grid0" ColumnWidth="200px" AllowFiltering="true" FilterMode="Radzen.FilterMode.Simple" AllowPaging="true" Responsive="true" AllowSorting="true" ShowPagingSummary="true" PageSizeOptions=@(new int[]{5, 10, 20, 30})
Data="@vinvoicetrackingGrids" TItem="Tracking.Models.TrackingDB.trackingGrid" RowSelect="@DataGrid0RowSelect" >