One feature of using jQuery UI Sortable is the ability to make the sortable item container scroll when an item is dragged. This can be achieved by specifying the scroll option.
In my case, I have several sortable lists that are connected within separate containers with set maximum heights and overflow scrolls:
<div class="list">
<div class="item">A1</div>
<div class="item">A2</div>
<div class="item">A3</div>
<div class="item">A4</div>
<div class="item">A5</div>
</div>
<div class="list">
<div class="item">B1</div>
<div class="item">B2</div>
<div class="item">B3</div>
<div class="item">B4</div>
<div class="item">B5</div>
</div>
The challenge I am facing is the inability to scroll each container when items are dragged between them. Currently, only the parent container scrolls, which is not ideal for my scenario where I need both connected list containers to scroll.
You can view a basic setup of this situation on this codepen: http://codepen.io/typ90/pen/pymOdV
I have attempted to use the helper option in the sortable function to clone the item and append it to other containers as it's being dragged around, but without success.
If you have any suggestions or ideas on how to tackle this issue, please let me know!