I have an item being dragged into a sortable. The sortable's size is dynamic, and grows when dragging starts. The sortable's new larger area doesn't seem to count as a valid dropzone the way I'd expect, and only the initial area is valid for dropping.
Is there a way to tell the draggable/sortable to "update"?
Essentially, something like this:
$('.draggable').draggable({
connectToSortable: ".sortable",
start: function () {
$('.sortable').width(300);
}
});
I have a jsfiddle demonstrating this issue: http://jsfiddle.net/o4oLcu0g/