onEventCreated

fires when the user starts to create a new event (by double click or dragging)

void onEventCreated(string id,Event e);
idstringthe event's id
eEventa native event object

Example

scheduler.attachEvent("onEventCreated", function(id,e){
    //any custom logic here
});

Back to top