I'm using Framework7 sortable list and it works well, just that it doesn't trigger an event when the list is changed.
So I'm trying a few built-in events:
$('.sortable-handler').on('touchstart', function (e) {
e.preventDefault();
alert('touchstart');
});
$('.sortable-handler').on('touchmove', function (e) {
e.preventDefault();
console.log('touchmove');
});
$('.sortable-handler').on('touchcancel', function (e) {
e.preventDefault();
console.log('touchcancel');
});
$('.sortable-handler').mouseleave(function (e) {
e.preventDefault();
console.log('mouseleave');
});
.. but all I get is:
Unable to preventDefault inside passive event listener due to target being treated as passive. See https://www.chromestatus.com/features/5093566007214080
Which event should I look for to get the updated list on every sort?
touch-action: none;
does not work, it is likely that you have applied anotheroverflow
value to your wrapper. Then definetouch-action: none; overflow: hidden;
for your element. – Geniagenial