I'm trying to display a calender with "notes" that are from a database. I don't want to user to add notes or appointments. How do I disable the editor?
Thanks
Rose Anna
Hello ,
If you are using UltraMounthViewSingle you could do following:
To disable editing of node you could handle BeforeAppointmentEdit event end put there e.Cancel = true;
To disable user to add appointments you could set the AutoAppointmentDialog to false:
ultraMonthViewSingle1.AutoAppointmentDialog = false;
Let me know if you have any further questions.
This worked. Thanks.