Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1095
Where do I find appointment information with Javascript?
posted

I am trying to create a context menu on a single click.  I have the code ready to implement this.  However I am trying to find out the right object/events to use.

Lets say one day has an appointment set, and one day does not.  What event can I use or what objects can I use through Javascript to see if the day that was just clicked on has an appointment set?

Here is the current event I am using, which works, but when I click on an appointment nothing fires.

function WebScheduleInfo1_ActiveDayChanging(oScheduleInfo, oEvent, oOldDate, oNewDate) {
console.log(oScheduleInfo);
console.log(oEvent);
console.log(oOldDate);
console.log(oNewDate);

}

Which object will hold the value of weather an appointment is set that day or not?

Parents Reply Children