This is a migrated thread and some comments may be shown as answers.

ListView Pullup to refresh

1 Answer 110 Views
ListView
This is a migrated thread and some comments may be shown as answers.
RR
Top achievements
Rank 1
RR asked on 04 Jul 2018, 01:03 PM

hi

I want append items to list when user scroll up through the listview. PullToRefresh works when user scrolling the list upwards only., 

Can this be achieved and if so how?   Following is my code which works fine on "pull".

<telerikDataControls:RadListView
   x:Name="Events"
   ItemsSource="{Binding CalendarEvents,Mode=TwoWay}"
   VerticalOptions="FillAndExpand"
   HorizontalOptions="FillAndExpand"
   IsLoadOnDemandEnabled="false"
   LoadOnDemandMode="Automatic"
   IsPullToRefreshEnabled="True"
   RefreshRequested="EventList_RefreshRequested"
   IsPullToRefreshActive="{Binding IsBusy,Mode=TwoWay}" >
 
 
 
  private void EventList_RefreshRequested(object sender, PullToRefreshRequestedEventArgs e)
  {
    GetEvents();
  }

 

1 Answer, 1 is accepted

Sort by
0
Lance | Manager Technical Support
Telerik team
answered on 04 Jul 2018, 09:41 PM
Hello Roshan,

Currently, the RadListView doesn't have configurable PullToRefresh gesture-direction settings. If you'd like to submit this as a feature request, you can enter it here: UI for Xamarin Feedback Portal.

Regards,
Lance | Tech Support Engineer, Sr.
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
ListView
Asked by
RR
Top achievements
Rank 1
Answers by
Lance | Manager Technical Support
Telerik team
Share this question
or