onEventIdChange

fires when the id of an event is changed

void onEventIdChange(string old_id,string new_id);
old_idstringthe initial event's id
new_idstringa new event's id

Example

scheduler.attachEvent("onEventIdChange", function(old_id,new_id){
    //any custom logic here
});

Details

Normally, the event occurs after receiving confirmation for the insert operation (changing the client-side ID to DB's ID )

Back to top