I have two divs that need to exchange items with each other
The first div has overflow-y:scroll and overflow-x: visible. Whenever I drag an item out of that div it is always clipped. I want to keep the scroll feature in the y direction but want to allow sortable actions.
A solution that I have found is to add:
appendTo: 'body',
helper: 'clone',
To the sortable clause and the problem is fixed