I need to build a simple sortable list where the element being dragged moves with the mouse. I do not want a clone and I do not want the element NOT to move with the mouse. I read the poor documentation this framework has and couldn't find that magic option. Could you please tell me if there is any way to do that?
Also, i tried making a few elements draggable and a nasty behaviour showed up. I have list items statically positioned, one below the other. After calling makeDraggable(), Mootools magically adds position absolute to all those elements instead of relative, and not only that, left and top properties are also applied, moving those elements down! seriously... WTF? Is there any way to make an element draggable while keeping that element's position? This is really frustrating. I'm not asking too much, this can be done with jQuery in a few lines without spending a whole day guessing the documentation.... Example, take a look at this demo: http://mootools.net/demos/?demo=Drag.Cart There is a magic undocumented method "drag.start(event);", what is that?
