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
250
UltraMonthViewSingle Question
posted

How can I disable ALL actions so I can manage everything manually (adding, editing, deleting appointments, etc)

I set locked = true but that did not help, I trapped  BeforePerformAction and set e.Cancel = true but that did not help either.

Thanks.

  • 69832
    Offline posted

    kimdobranski said:
    I set locked = true but that did not help

    Setting Appointment.Locked to true essentially makes the Appointment read-only. This prevents it from being edited or deleted. It does not however prevent other appointments from being added; you can handle the BeforeAppointmentAdded event and cancel it if you want to do that.