These docs are for an old release.
Info on upgrading to v5
drop
Called when an external draggable element or an event from another calendar has been dropped onto the calendar.
function( dropInfo ) { }
dropInfo is a plain object with the following properties:
| allDay |
|
|---|---|
| date |
The Date of where the draggable was dropped. |
| dateStr |
The ISO8601 string representation of where the draggable was dropped. |
| draggedEl |
The HTML element that was being dragged. |
| jsEvent |
The native JavaScript event with low-level information such as click coordinates. |
| resource |
If the current view is a resource-view, the Resource Object the element was dropped on. Must be using one of the resource plugins. |
| view |
The current View Object. |
If you need an Event object, see eventReceive instead.