Completed
Last Updated: 18 Oct 2021 14:56 by ADMIN
Release R1 2020 SP1
Ron
Created on: 27 Jun 2019 08:06
Category: ListView
Type: Feature Request
5
ListView: Add option to restrict swipe direction.
Users should be allowed to disable swiping in one direction only.
2 comments
ADMIN
Didi
Posted on: 18 Oct 2021 14:56

Hi Tobias,

The scenario can be achieved using the RadListView SwipeOffset Property: https://docs.telerik.com/devtools/xamarin/controls/listview/gestures/listview-gestures-cell-swipe#properties 

You can disable right-to-left swiping for example:

   <telerikDataControls:RadListView x:Name="listView"
                                 IsItemSwipeEnabled="True"
                                 ItemSwipeCompleted="OnItemSwipeCompleted"
                                 ItemsSource="{Binding Source}"
                                 SelectionMode="None"
                                 SwipeOffset="70, 0, 0, 0"

 

Disable left-to-right swiping, for example:

   <telerikDataControls:RadListView x:Name="listView"
                                 IsItemSwipeEnabled="True"
                                 ItemSwipeCompleted="OnItemSwipeCompleted"
                                 ItemsSource="{Binding Source}"
                                 SelectionMode="None"
                                 SwipeOffset="0, 0, 70, 0"

Regards,
Didi
Progress Telerik

Remote troubleshooting is now easier with Telerik Fiddler Jam. Get the full context to end-users' issues in just three steps! Start your trial here - https://www.telerik.com/fiddler-jam.
Tobias
Posted on: 15 Oct 2021 09:36
I am not able to find this feature on the control, furthermore I cannot find the feature in the release history.