Can I access properties of this dialog? For example, make the recurrence button invisible, seen as I can't save a recurrence rule.
Thanks,
Derek.
2 Answers, 1 is accepted
0
Jordan
Telerik team
answered on 12 Dec 2008, 08:46 AM
Hello Derek,
That is quite an interesting question, the answer to which is yes. You can hide the "Recurrence" button by inheriting from the standard dialog and hiding it and then make the scheduler use the custom dialog like below:
protectedoverridevoid OnLoad(EventArgs e)
{
base.OnLoad(e);
this.radScheduler1.AppointmentEditDialogShowing += new EventHandler<AppointmentEditDialogShowingEventArgs>(radScheduler1_AppointmentEditDialogShowing);