I'm currently using scriptaculous and prototype to drag/drop elements from one div to another, and append a new Element based on the 'src' of the element that is dropped, creating a new draggable out of it.

What I need to do is assign the id of the dropped element to the new one once it is created.

I've tried a ton of different approaches, here is the latest:

$$('.image').each(function(stack) {
new Draggable(stack, { revert: true, ghosting: true }); 
});

...

onDrop: function(stack) {
      var added = new Element('img');
      added.src = stack.readAttribute('src');
      var imageid = stack.identify();
	  added.setAttribute('id', imageid);

obviously I'm a bit of a novice, and imagine I am way off by now. Appreciate any help.

link|improve this question

33% accept rate
wow i AM way off, heh. – Bobby Feb 12 '09 at 19:39
figured out a different route to not have to do this. thx. – Bobby Feb 13 '09 at 6:08
feedback

1 Answer

Most of your code seems sound however I wanted to make sure that div object being dropped on is Droppable. The Draggable class doesn't have an onDrop callback function. If you look at the documentation it has an onStart, onDrag, change, and onEnd. Try using onEnd instead.

http://wiki.github.com/madrobby/scriptaculous/draggable http://wiki.github.com/madrobby/scriptaculous/droppables

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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