Hi Karthik Raja,
Thank you for your fast response.
For the first issue, here is the configuration of the datagrid and datapager
<datagrid:SfDataGrid x:Name="grid"
ColumnSizer="Auto"
AutoGenerateColumns="False"
SelectionMode="Single"
AllowSorting="True"
AllowSwiping="True"
SwipeEnded="enquiry_grid_SwipeEnded"
AllowDraggingColumn="True"
VerticalOverScrollMode="None"
NotificationSubscriptionMode="None"
EnableDataVirtualization="True"
LiveDataUpdateMode="AllowDataShaping">
<datagrid:SfDataGrid.SortColumnDescriptions>
<datagrid:SortColumnDescription ColumnName="Customer" />
</datagrid:SfDataGrid.SortColumnDescriptions>
<datagrid:SfDataGrid.LeftSwipeTemplate>
<DataTemplate>
<Grid BackgroundColor="#34617f">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100"/>
<ColumnDefinition Width="100"/>
</Grid.ColumnDefinitions>
<Button Text="Edit"
BackgroundColor="#34617f"
Clicked="Edit_Clicked"/>
<Grid Grid.Column="1" BackgroundColor="#bd565f">
<Button Text="Delete"
BackgroundColor="#bd565f"
Clicked="Delete_Clicked"/>
</Grid>
</Grid>
</DataTemplate>
</datagrid:SfDataGrid.LeftSwipeTemplate>
</datagrid:SfDataGrid>
<sfPager:SfDataPager x:Name ="dataPager" />
dataPager.Source = gridSource;
dataPager.PageSize = 7;
grid.ItemsSource = dataPager.PagedSource;
I am unable to provide a video, but what happens is that the datagrid and the pager loads perfectly, but switching between pages does not update the content of the datagrid (when the pager is on page 2, the datagrid content is still on page 1).
I am facing the issue in the Android application, and I am using Xamarin Forms version 5.0.0.1874 and SfDataGrid version 18.4.0.49.
Regarding the sorting, I can confirm that using a SortColumnDescription does work, I'll change my code so that all columns where sorting would be appropriate uses custom sorting.
Thanks for the referral to the appropriate documentation for custom group summary rows as well.
I hope that the above information is sufficient.
Regards,
Jano