Hi,
I'm trying to use custom appointment create/edit views in ScheduleView control. I have created event handlers for the Scheduler AppointmentCreating and AppointmentEditing events. When i cancel appointment create event i can open custom appointment create view and default appointment create view is not opened. But when try to do same for the appointment editing. Canceling operation is not working and default appointment edit view is opened. How to solve this issue?
Sami
I'm trying to use custom appointment create/edit views in ScheduleView control. I have created event handlers for the Scheduler AppointmentCreating and AppointmentEditing events. When i cancel appointment create event i can open custom appointment create view and default appointment create view is not opened. But when try to do same for the appointment editing. Canceling operation is not working and default appointment edit view is opened. How to solve this issue?
Regards,private
void
XamlRadScheduler_AppointmentCreating(
object
sender, AppointmentCreatingEventArgs e)
{
e.Cancel =
true
;
////TODO: Open custom appointment create view.
}
private
void
XamlRadScheduler_AppointmentEditing(
object
sender, AppointmentEditingEventArgs e)
{
e.Cancel =
true
;
////TODO: Open custom appointment edit view.
}
Sami