Event after sorting sorting sorting jqueryui

I want to call the callback function after the jqueryuis sort is completely sorted and everything is back in place.

I tried the stop event, but the element that I dragged is still absolute, so this is not what I want.

Is there any event for this, or do I need to configure some secret timeouts?

+5
source share
1 answer

There is an update method. You can write your code in the update method.

 update: function(event, ui) { } 
+6
source

Source: https://habr.com/ru/post/1215583/


All Articles