Kindly review the attached zip containing video with issue that I facing. I have using Syncfusion Data-Grid for displaying list of records.
Sometime paging showing empty records.
<sfgrid:SfDataGrid x:Name="ProductListGrid" AutoGenerateColumns="False"
ColumnSizer="Star" SelectionMode="Single" Grid.Row="1"
ItemsSource="{Binding ItemList,Mode=TwoWay}"
SelectedItem="{Binding SelectedItem,Mode=TwoWay}" >
<sfgrid:SfDataGrid.RowHeight>
<OnPlatform Android="60"
WinPhone="60"
iOS="60"
x:TypeArguments="x:Double" />
</sfgrid:SfDataGrid.RowHeight>
<sfgrid:SfDataGrid.Columns x:TypeArguments="sfgrid:Columns">
<sfgrid:GridTemplateColumn MappingName="ItemDesc" Padding="5,0,5,0">
<sfgrid:GridTemplateColumn.HeaderTemplate>
<DataTemplate>
<Label x:Name="ItemDesc" Text="Product" TextColor="Black" VerticalOptions="Fill"
YAlign="Center" XAlign="Start" LineBreakMode="WordWrap" FontSize="25" FontAttributes="Bold"/>
</DataTemplate>
</sfgrid:GridTemplateColumn.HeaderTemplate>
<sfgrid:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Label Text="{Binding ItemDesc,Mode=TwoWay}" Grid.Row="0" HorizontalTextAlignment="Start"
VerticalTextAlignment="Center" FontSize="24" LineBreakMode="TailTruncation"/>
</DataTemplate>
</sfgrid:GridTemplateColumn.CellTemplate>
</sfgrid:GridTemplateColumn>
<sfgrid:GridTemplateColumn MappingName="ItemSKU" Padding="5,0,5,0">
<sfgrid:GridTemplateColumn.HeaderTemplate>
<DataTemplate>
<Label x:Name="ItemSKU" Text="SKU" TextColor="Black" VerticalOptions="Fill"
YAlign="Center" XAlign="Center" LineBreakMode="WordWrap" FontSize="25" FontAttributes="Bold"/>
</DataTemplate>
</sfgrid:GridTemplateColumn.HeaderTemplate>
<sfgrid:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Label Text="{Binding ItemSKU,Mode=TwoWay}" Grid.Row="0" HorizontalTextAlignment="Center"
VerticalTextAlignment="Center" FontSize="24" LineBreakMode="TailTruncation"/>
</DataTemplate>
</sfgrid:GridTemplateColumn.CellTemplate>
</sfgrid:GridTemplateColumn>
<sfgrid:GridTemplateColumn MappingName="SalesPrice" Width="150" Padding="5,0,5,0">
<sfgrid:GridTemplateColumn.HeaderTemplate>
<DataTemplate>
<Label x:Name="SalesPrice" Text="Price" TextColor="Black" VerticalOptions="Fill"
YAlign="Center" XAlign="Center" LineBreakMode="WordWrap" FontSize="25" FontAttributes="Bold"/>
</DataTemplate>
</sfgrid:GridTemplateColumn.HeaderTemplate>
<sfgrid:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Label Text="{Binding SalesPrice,Mode=TwoWay}" Grid.Row="0" HorizontalTextAlignment="Center"
VerticalTextAlignment="Center" FontSize="24" LineBreakMode="TailTruncation"/>
</DataTemplate>
</sfgrid:GridTemplateColumn.CellTemplate>
</sfgrid:GridTemplateColumn>
</sfgrid:SfDataGrid.Columns>
</sfgrid:SfDataGrid>