Hello,
I am using RadScheduler in my application and I would like to set the default layout of the AdvancedInsertTemplate so that 'Recurring appointment' is selected with a recurrence setting of 'Weekly'. Is this possible to do without having to modify the .ascx file in some way? I have been successful in programmatically selecting the 'Recurring appointment' checkbox in the FormCreated event using the following code:
but this only causes the checkbox to be checked, the panel below that displays the recurrence controls won't show. Even if I try:
Does anyone know what I might be able to do to accomplish this?
Thanks
I am using RadScheduler in my application and I would like to set the default layout of the AdvancedInsertTemplate so that 'Recurring appointment' is selected with a recurrence setting of 'Weekly'. Is this possible to do without having to modify the .ascx file in some way? I have been successful in programmatically selecting the 'Recurring appointment' checkbox in the FormCreated event using the following code:
Dim chk As CheckBox = CType(e.Container.FindControl("RecurrentAppointment"), CheckBox) |
chk.Checked = True |
but this only causes the checkbox to be checked, the panel below that displays the recurrence controls won't show. Even if I try:
Dim pnl As Panel = CType(e.Container.FindControl("RecurrencePatternPanel"), Panel) |
pnl.Visible = True |
Does anyone know what I might be able to do to accomplish this?
Thanks