Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JQuery UI, Combining Sortable with Droppable

Tags:

I am trying to combine JQuery UI sortable with droppable to create multiple pages for dropping and sorting things. I have setup a blog entry with a stand-along demo here:

http://whit.info/blog/2009/06/06/jquery-ui-combining-sortable-with-droppable/

and here is a jsFiddle:

http://jsfiddle.net/VUuyx/

Note that you can drag to sort the boxes, even into other columns. You can also click the page buttons to switch pages. My problem lies in combining these two features:

By using droppable, I've allowed the user to drag a box to a page button, the page will then switch, and the user can finish dragging it onto the newly revealed page. The problem is that when the page switches, the first column which appears under the dragged box doesn't have it's over event fire. You have to drag to another column, and then back to the first column to get the placeholder to appear.

I'm not sure, but I think I need to somehow clear the events, or fire them manually. The problem seems to stem from the fact that the dragged box is over the column when it is made visible.

Can you assist with this esoteric dilemma?

Thanks!

Update:

So I have been considering possible work arounds for this. Michal suggested firing the refresh method, which indeed doesn't solve the problem, but made me think about event issues.

It seems that when you mouse away and then back again, the proper events fire. Perhaps if I can manually fire the mouseout event for the first column, the reset will allow the mouseover event to fire properly.

I tried this:

$(".column:first").trigger('mouseout');  

But I don't think that is the same as sortable's out event. Perhaps I should fire that event?

like image 750
Whit Avatar asked Aug 13 '10 19:08

Whit


1 Answers

Maybe I'm misunderstanding the problem, but I don't think it has anything to do with the "page switching". If you turn on both pages at the same time and try to drag "Box 1" to a position above "Box 4", you'll see that it doesn't trigger that "Box 4"'s Sortable has received the Draggable until you go below "Box 4". This doesn't solve your problem, but perhaps will help you look in a better area for the solution.

See http://jsfiddle.net/nkBNP/7/ for a JSFiddle that demonstrates what I mean.

like image 68
TML Avatar answered Sep 19 '22 14:09

TML