vote up 1 vote down star
2

How can I have two lists (div or table elements) in which I can drag & drop items from one to the other (I think jQuery droppable does this), but without actually removing it from the source list?

Example:

List1    List2
 AAA     111
 BBB     555
 CCC     999
 DDD     777

Now I'm dragging BBB from the left to the right between "555" and "999". Result (see how BBB is now in both:

List1    List2
 AAA     111
 BBB     555
 CCC     BBB
 DDD     999
         777

Thank you!

flag

68% accept rate

2 Answers

vote up 1 vote down

you should look at jquery sortable. connectWith option is used to connect with another sortable list so you can drop it to that list.

link|flag
vote up 1 vote down

Take a look at this link... it's not EXACTLY what you want, but I think it will get you on the right track. The example performs similarly to your requirements.

link|flag

Your Answer

Get an OpenID
or

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