拖拽和调整之eventDragStop – FullCalendar中文文档
2014-02-18 · 159 chars · 1 min read
当日程拖拽结束的时候触发:
function( event, jsEvent, ui, view ) { }
此回调函数肯定会被触发,即使日程时间没有变化。eventDragStop 会在日程的信息修改之前被触发,并且比 eventDrop 回调要早。
event 是 Event Object 对象,包含当前日程的信息(时间,标题等)
jsEvent 是原生的 js 对象,包含鼠标点击坐标等信息。
ui 是 jQuery UI 对象。
view 是当前的 View Object。
官方英文文档:http://arshaw.com/fullcalendar/docs/event_ui/eventDragStop/