onEventDropOut

当拖拽的事件被放置到调度器区域外时触发

boolean onEventDropOut(string id,object ev,object to,Event e);
idstring事件的ID
evobject事件对象
toobject目标调度器(如果放置在空白区域则为null)
eEvent原生事件对象
boolean指示默认事件操作是否继续执行(true)或被阻止(false

Example

scheduler.attachEvent("onEventDropOut", function (id, ev, to, e){
    // 可以在这里添加自定义逻辑
    return true;
});

Details

该事件仅在调度器之间进行拖放操作时触发。

See also
  • Articles
  • 返回顶部