开发者

jquery-ui sortable connected lists with hidden overflow

开发者 https://www.devze.com 2023-01-06 13:44 出处:网络
I have two fixed hight divs each containing a sortable list which are connected to each other. Is there a way to hide the overflow while still having the lists connected?开发者_开发知识库 E.g. if the

I have two fixed hight divs each containing a sortable list which are connected to each other. Is there a way to hide the overflow while still having the lists connected?开发者_开发知识库 E.g. if the overflow is set to hidden then the li doesn't show when it is dragged outside of the div.

I know a possible solution would be to calculate the maximum number of li that the div can contain and dynamically add/remove elements based on the number of visible elements, but I was wondering if there was a better solution?


You should be able to fix this by using the appendTo option, which will tell it where to attach the helper object to in the DOM. The default is to use parent which means the helper that's being dragged is inside your overflow: hidden div. Changing it to, for example, body should fix it for you. I.e:

$( ".selector" ).sortable({ appendTo: 'body' });


Have a look at containment. It defines a bounding box that the sortable items are constrained to while dragging.

http://api.jqueryui.com/sortable/#option-containment

0

精彩评论

暂无评论...
验证码 换一张
取 消