Hi,
I tried to create and use a custom Recurrence Dialog derived from EditRecurrenceDialog. I've not found a factory like IAppointmentFactory for appointment dialogs so I tried to use the derived dialog directly in the event handler:
private
void
radScheduler1_RecurrenceEditDialogShowing(
object
sender,
Telerik.WinControls.UI.RecurrenceEditDialogShowingEventArgs e)
{
e.RecurrenceEditDialog =
new My
RecurrenceDialog(e.Appointment);
}
But it always shows the standard dialog layout. What I'm doing wrong?