I have a Radzen DataGrid on my server application. It displays job postings. Initially, it appears to look correct.
But when I click the "2", it displays Page 1 for that page. As you can see, the grid went to the next page correctly, but the pager is off.
Not really sure what could be going on. I have the following settings for my DataGrid:
<RadzenDataGrid @ref=fullDataGrid AllowFiltering="true" PagerAlwaysVisible="true" AllowColumnResize="true" AllowAlternatingRows="false" FilterMode="FilterMode.Simple" AllowSorting="true" PageSize="20" AllowPaging="true" PagerHorizontalAlign="HorizontalAlign.Left"
Data="@types.Postings" ColumnWidth="300px" LogicalFilterOperator="LogicalFilterOperator.Or" SelectionMode="DataGridSelectionMode.Single">

