i’m using jQuery ui sortable for a web app and i have a strange problem.
Here is the code:
$(".internal_controlscontainer").each(
function(index,el){
$(this).sortable({connectWith:".internal_controlscontainer"})
}
);
The problem is that when i try to grab an element from the first internal_controlscontainer and take it to the second internal_controlscontainer it doesn’t work, but from the second to the first it works, why?
I read the jquery ui doc but i can’t seem to find the problem
Roby
I have the same problem as you.
It’s really the width matters.
You cannot drag a long element to a short element.