Displaying 1 result from an estimated 1 matches for "collectiondragdrop".
2007 Feb 12
0
Scriptaculous - extending draggable via sortable
Hello,
I have created a Yahoo style Drag and Drop using Scriptaculous Drag
and Drop. I have hooked my custom functions to the Drag and Drop using
the following code:
new Draggable(element, {revert:true, ghosting:true, handle: handle,
onStart: CollectionDragDrop.dragStart, onEnd:
CollectionDragDrop.dragEnd,
onDrag: CollectionDragDrop.dragMove,
reverteffect: CollectionDragDrop.revertEffect});
Now besides making the rows Draggable I want them to be sortable. But
I am not able to pass on the onEnd, onStart hooks without modifying
the sc...