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
This one works for me. however when i click on another timeslot, it should clear the last one.
But it also keeps focusing on last timeslot. So it is very confusing for user to verify which timeslot he is on?
Can you please verify this one ? i put the same code e.cancel =true
Thanks..
Brian Fallon"] I was not able to reproduce the behavior you describe here with a simple test; I handled the BeforeAppointmentEdited avent and unconditionally set e.Cancel to true, and the appointment did not enter edit mode.
I was not able to reproduce the behavior you describe here with a simple test; I handled the BeforeAppointmentEdited avent and unconditionally set e.Cancel to true, and the appointment did not enter edit mode.