This is a migrated thread and some comments may be shown as answers.

Custom Appointment view

1 Answer 117 Views
ScheduleView
This is a migrated thread and some comments may be shown as answers.
Sami
Top achievements
Rank 1
Sami asked on 29 Mar 2011, 01:27 PM
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?

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.
}
Regards,
Sami

1 Answer, 1 is accepted

Sort by
0
Valeri Hristov
Telerik team
answered on 30 Mar 2011, 02:14 PM
Hi Sami,

Please, check the following forum post for more information about how to create custom dialogs with RadScheduleView:
http://www.telerik.com/community/forums/silverlight/scheduler/appointment-editing.aspx

All the best,
Valeri Hristov
the Telerik team
Tags
ScheduleView
Asked by
Sami
Top achievements
Rank 1
Answers by
Valeri Hristov
Telerik team
Share this question
or