I use LoadonDemand in RadListView. in Event_ListLoadonDemand I call get method which is triggered when user click the load more button at the end of the list. this works fine is Android. But in ios when button is clicked events are concat to the list but list scrolls to the top. This is not the case in android. How to avoid the list scrolling to the top in ios?
<telerikDataControls:RadListView x:Name="EventList"
BackgroundColor="{StaticResource DarkGray}"
ItemsSource="{Binding CalendarEvents,Mode=TwoWay}"
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
IsLoadOnDemandEnabled="True"
LoadOnDemandMode="Manual"
IsPullToRefreshEnabled="True"
RefreshRequested="EventList_RefreshRequested"
LoadOnDemand="EventList_LoadOnDemand"