Documentation

onBeforeDropOut

fires before a dragged element is released over the droppable area

void onBeforeDropOut(object context,Event native_event){ ... };

Parameters

contextobjectthe drag-n-drop context
native_eventEventan HTML event object

Example

some.attachEvent("onBeforeDropOut", function(context, native_event){
    //... some code here ... 
    //return false to block operation
    return true;
});

Details

Event is similar to onBeforeDrop, but occurs in a drag SOURCE component, not in a drag target one

See also

Back to top