Hi,

I'm trying to evaluate javascript libraries that allow you to do drag
and drop, looking at scriptaculous now.

I have two lists, like this:

  list1
     aa
     bb
     cc

  list2
     xx
     yy
     zz

is it possible in scriptaculous to drag an item from list1, say 'bb',
and drop it in list2, but instead of removing it from list1, a clone
is made and inserted in list2? That way the result is:

   list1: { aa, bb, cc }     list2: { xx, bb, yy, zz }

Other than that I just need the general dnd stuff, like I need to be
able to reorder the elements in both lists by dragging.

I tried using jquery-ui, but it doesn't allow this cloning behavior.
It only allows you to move items between lists.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptacul...@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.

Reply via email to