I have multiple sortable list. It can able to do Reorder the groups, Reorder the items within the groups,Move the items between the groups.
But It cannot move the item from one group to other empty group.
Here I need to move any item from Group2 to Group1
Here is fiddle, I tried the below code
$(function(){
$('#groupsList').sortable();
$('.itemsList').sortable({
connectWith: ['.group','.itemsList']
});
});
Thanks in advance