I want to have a list that is sortable, but I also want the elements in that list to be droppable to the divs I have defined as droppable. I can't seem to find a way to do it. Any ideas?
|
Here's a simplified version of Colin's solution. The biggest difference is that this solution does not store the entire html of the sortable elements, but only the currently dragged item. It is then inserted into it's original position if the item is dropped on the droppable area. Anyway, here's the code:
It still suffers the same problem as Colin's solution if an item is dragged into a new position in the list and then dropped outside both the |
||||
|
|
|
As far as I could tell, the issue with the previous code I posted is that the drop function of the droppable was getting called before the mouseup of the sortable, and since I rewrote the list the sortable was getting angry (for lack of better terms). That's somewhat a guess. Looking at the final code:
Tons of quirks are involved here. I tried to save the #sortable html on the start event of sortable, but that get's called after all of the ui-css gets applied, and ended up placing list elements in crazy places. So, I needed to use the mousedown function on the LIs. The setSortable is in a function because the stop event rewrites the sortable, which is "recursive" I guess. Not sure the exact terminology here, but we can go with annoyingly confusing. Fortunately, the droppable's drop function gets called before the sortables stop function, so I was able to set a global "dropped" variable that was used to see if the element was dropped. I'm still surprised this wasn't easier to do, I thought jQuery would have functions to handle it a lot better. Perhaps I'm missing something? |
|||
|
|
|
I think this is what you're looking for: http://docs.jquery.com/UI/Draggable#option-connectToSortable |
|||||||||||||
|
|
I've spent all day on this, and I've gotten a lot closer, but still not doing as well as I'd like. I now have the functionality I need, but a Javascript error is getting thrown. The issue is getting the sortable list to return to its previous position if the element is dropped in the droppable, rather than in the list. Currently, I'm saving the html onmousedown, then rewriting the html in the drop function of the droppable. This works, but its giving me a jquery variable is null error. Can anyone find a better solution? Code:
|
|||
|
|
|
I've been working on something practically identical. I created this originally in prototype, and its working flawlessly but recently decided because of upcoming functionality that JQuery should be used if possible so I've been trying to rewrite exactly what you describe here in JQuery. I psudo-solved the problem of returning sortable items by setting the "tolerance:" attribute for the sortable and droppable. By setting tolerence: fit on the Sortable and Tolerance: touch on the droppable it is preventing any sort once the LI is moved outside the bounds of its parent UL. so once released over the droppable it snaps right back. The issue i've been running into now is accessing content of a textarea inside the sortable once dropped. |
|||||
|
|
Was able to get a similar end result by making the each of the target DIVs their own sortables. I then, via connectWith, made all of the sortables able to connect and share draggables. Something like:
|
|||
|
|
|
If you can allow your other droppable areas to be sortable as well, you can use the connectWith option with a common selector:
your jQuery code would then be:
This solution worked beautifully for me anyways. |
|||
|
|