fires when the id of an event is changed
old_id | string | the initial event's id |
new_id | string | a new event's id |
scheduler.attachEvent("onEventIdChange", function(old_id,new_id){
//any custom logic here
});
Normally, the event occurs after receiving confirmation for the insert operation (changing the client-side ID to DB's ID )
Back to top