onEventDragOut

当拖拽的事件离开scheduler区域时触发

void onEventDragOut(string id,Event e);
idstring事件的id
eEvent原生事件对象

Example

scheduler.attachEvent("onEventDragOut", function (id, e){
    //在这里添加自定义逻辑
});

Details

此事件仅在不同scheduler之间进行拖放操作时触发。

See also
  • Articles
  • 返回顶部