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
40
Prevent in-place editing in UltraDayView
posted

How to prevent in-place editing of a an existing appointment or prevent adding a new appointment in UltradayView ( multi-owner view ). I would like to have only the Appointment Dialog Box when I double click.

I try to use e.Cancel = true for the event :

 

 

 

 

 

private void reservationUltraDayView_BeforeAppointmentEdited(objectsender,CancelableAppointmentEventArgs e)

{

 

 

e.Cancel = true;

}

but when you click second time the control enter in edit mode.

Thank you