onBeforeEventDragOut

在事件被拖出调度器之前触发

boolean onBeforeEventDragOut(string id,object ev,Event e);
idstring事件的ID
evobject事件的数据对象
eEvent原生事件对象
boolean决定默认事件操作是否继续执行(true)或被阻止(false

Example

scheduler.attachEvent("onBeforeEventDragOut", function (id, ev, e){
    // 在这里编写自定义逻辑
    return true;
});

Details

此事件仅在不同调度器之间拖放时触发。

See also
  • Articles
  • 返回顶部