vote up 0 vote down star

I have a pool of items in the drag list which is connected to a sortable using connectToSortable option. Now I want to remove some items from this sort list and move them back to the drag list. Sort of like an undo. Suppose the user moves some 5 items to sort list and decides he/she wants only 4 items, and decides to just drag the unwanted item from the sortlist TO the drag list. How do I accomplish this WITHOUT adding a "remove" link in the sort list. Thanks a lot. For more information please refer to http://the-stickman.com/web-development/javascript/jquery-dropping-items-from-a-draggable-list-to-a-sortable-list/

flag

71% accept rate
The link you provided does not not seem to work, please either provide the link or the relevant part of the code. – karim79 Mar 24 at 9:12

1 Answer

vote up 0 vote down

This jQuery UI example seems like what you're after. It features two connected list and the user can drag elements between them.

But I suspect that your scenario does not match the example. Let say you have a drag list, an UL with each LI made draggable and linked to another UL made a sortable (See this link for an example). Each time you drag something from the drag list, clone is used of the element dragged. Using the "out" event, you can register when one drags an item outside the sortable list and if the item is still outside when the "stop" event is triggered, remove it from the sortable. Using the ui.position & ui.offset properties of the sortable widget, you can determine if the item was dragged over the drag list before actually removing the item from the sortable.

Hope this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.