Draggable connect to Sortable (array of Sortables rather than one sortable reference)?
Is it possible to set the connectToSortable to be an array of sortable elements which are not all the same class?
element.draggable({
connectToSortable: [".sortableType",".somethingOtherType",".anotherSortableType"],
start: function(event, ui){
},
stop: function(event, ui){
}
});
I have an element I would like to be able to drag into multiple locations where each location is made up of different things. I have tried using the ui-sortable as a target but that just puts a version into each of the sortable elements.
Help would be welcome otherwise I think I will need to write my own version for my particular purposes.