onEventClick
The event occurs the user clicks on one of the events. getFieldValue('controlId.changedEvent') or eventArgs.details can be used to determin the clicked event
app.startApp({
appName: "appointmentDetails",
id: eventArgs.details.id, //eventArgs.details provides the clicked event object
startMode: "modal"
});Google Calendar
window.open(eventArgs.details.url, '_blank', 'width=700,height=600'); //this is our custom operation. we will open the event in a new window.Last updated