Documentation

onAfterDropOrder

called when dnd reording fully finished

void onAfterDropOrder(id source,id target,object e){ ... };

Parameters

sourceidid of dragged item
targetidid of item, on which position it was dropped
eobjectnative html event

Example

$$("myform").attachEvent("onAfterDropOrder", function(source, target, e){
    ...
});

Back to top