admin管理员组文章数量:1344926
I want to trigger a callback function after the sorting of jqueryuis sortable pletely finished and everything is in place again.
I tried the stop
event, but the element I dragged is still positioned absolute, so this is not what I want.
Is there any event to achieve that, or do I need to set up some weird timeout stuff?
I want to trigger a callback function after the sorting of jqueryuis sortable pletely finished and everything is in place again.
I tried the stop
event, but the element I dragged is still positioned absolute, so this is not what I want.
Is there any event to achieve that, or do I need to set up some weird timeout stuff?
Share Improve this question asked Mar 18, 2015 at 9:34 Johannes KlaußJohannes Klauß 11.1k18 gold badges71 silver badges127 bronze badges 1- did you try update event ? api.jqueryui./sortable/#event-update – Frebin Francis Commented Mar 18, 2015 at 9:36
2 Answers
Reset to default 11There is an update method. You can write your code in update method.
update: function(event, ui) {
}
Use this and change your id accordingly
var sortableFormList = document.getElementById("editDynamicSpace");
new Sortable(sortableFormList, {
animation: 150,
handle: ".card-header",
ghostClass: 'blue-background-class',
onEnd: function(e) {
// write steps which you want to perform after sorting
}
本文标签: javascriptEvent after jqueryui sortable finished sortingStack Overflow
版权声明:本文标题:javascript - Event after jqueryui sortable finished sorting - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795986a2540438.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论