onEventUnselected

fires when the user unselects an event by selecting some other event

void onEventUnselected(string id);
idstringthe event's id (of the unselected event)

Example

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

See also
Back to top