jQuery Sortable List - scroll bar jumps up when sorting

后端 未结 13 1161
慢半拍i
慢半拍i 2020-12-24 12:28

I created a demo: http://pastebin.me/584b9a86d715c9ba85b7bebf0375e237

When the scroll bar is at the bottom and you drag items to sort them, it causes the scroll bar

13条回答
  •  抹茶落季
    2020-12-24 13:24

    This is how i solve the issue.

       $(".groups").sortable({
        ...
        helper: function(event, ui){
          lastScrollPosition =  $("body").scrollTop();
        },
        start: function(e, ui){
            // avoid scroll jump
            $("body").scrollTop(lastScrollPosition);
        },
       });
    

提交回复
热议问题