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:
To handle sortable list in Framework7 when user release currently sorting element in new position, you can use this code:
$$('li').on('sortable:sort',function(event){ alert("From " + event.detail.startIndex + " to " + event.detail.newIndex); });
Fiddle : https://jsfiddle.net/0zf5w4y7/