Hello, I'm a newbie in Radzen, and I'm trying to implement pagination on the server side. The issue is that the current page of my DataGrid is always 0 and doesn't change.
<RadzenDataGrid @ref="methodeValorisationGrid" AllowAlternatingRows="false" AllowFiltering="false" AllowPaging="true"
PageSizeOptions=@pageSizeOptions PageSize=@pageSize PageNumbersCount=@((int)Math.Ceiling((double)totalCount/pageSize)) Page=@OnPageChanged PageSizeChanged=@OnPageSizeChanged
AllowSorting="true" EditMode="DataGridEditMode.Single" Data="@methodeValorisationInfos" Count="@totalCount" RowUpdate="@GridRowUpdate" RowCreate="@GridRowCreate" TItem="MethodeValorisationInfo" ColumnWidth="100%">