You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to see the flow or order of events, and what each handler takes care of, documented.
I might for instance add a remove: function(e, ui) { e.preventDefault(); } to a Sortable’s options, and then not understand why that makes the stop/update events not fire when an item is dropped in a connected Sortable. In this case, it would be helpful to both know the order of events, and what remove’s handler normally takes care of, enabling me to recreate the parts of it I want, leaving the parts I don’t want behind (like messing up an item’s helper).
The text was updated successfully, but these errors were encountered:
I would like to see the flow or order of events, and what each handler takes care of, documented.
I might for instance add a
remove: function(e, ui) { e.preventDefault(); }
to a Sortable’s options, and then not understand why that makes thestop
/update
events not fire when an item is dropped in a connected Sortable. In this case, it would be helpful to both know the order of events, and whatremove
’s handler normally takes care of, enabling me to recreate the parts of it I want, leaving the parts I don’t want behind (like messing up an item’s helper).The text was updated successfully, but these errors were encountered: