onEventSelected

fires when the user selects an event in the scheduler

void onEventSelected(string id);
idstringthe event's id

Example

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

See also
Back to top