This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Other
115
stars
21
forks
source link
Enable RadListView item swipe to execute an action upon "full" swipe #1168
In onCellSwiping implement some logic to make the item animate/execute at certain swipe offset
In onSwipeCellFinishing implement logic: if item action is not executed so far, set left to the width of the swipe action buttons (so that if a user just swipes a bit, the swipe actions are revealed)
Enable the RadListView to have execute an action after "full" swipe.
This could be achieved by (just rough ideas):
swipeLimits.executeThreshold
and respect it in some way when developers set itonSwipeCellFinished
, e.g.onSwipeCellFinishing
, so that developers can:onSwipeCellStarted
full width swipe allowing the item to be swiped fully:onCellSwiping
implement some logic to make the item animate/execute at certain swipe offsetonSwipeCellFinishing
implement logic: if item action is not executed so far, set left to the width of the swipe action buttons (so that if a user just swipes a bit, the swipe actions are revealed)