У меня похожая ситуация, но я настроил <div>
для своей корзины и сделал ее списком подключенных.Вот мой сценарий:
$('#rubbishBin').sortable({
placeholder: 'deletingPlaceholder',
update: function (event, ui) {
ui.item.hide();
// Do what you need to to delete the item from the database
}
});
$('#itemContainer').sortable({
opacity: 0.6,
cursor: 'move',
revert: true,
delay: 250,
tolerance: 'intersect',
placeholder: 'draggingPlaceholder',
connectWith: '#rubbishBin'
});