I have implemented RadScheduler in our application, and had noticed a very strange behavior while inserting/editing the series of an appointment. I checked the 'Recurring Appointment' checkbox, then selected a recurrence type, like 'Weekly', chose the day of the week, and then selected 'End after' certain number of occurrences. Everything shows OK until I hover over the textbox next to the 'End by this date' radio-button, or by any of the date or time fields, when the recurrence information disappears.
This is the tag of my RadScheduler control:
<telerik:radscheduler id="RadScheduler1" runat="server" skin="Outlook" OverflowBehavior="Expand"
OnClientAppointmentContextMenu="appointmentContextMenu" OnFormCreated="RadScheduler1_FormCreated"
OnClientAppointmentDeleting="Client_AppointmentBeforeDelete"
OnClientAppointmentInserting="Client_AppointmentBeforeInsert"
OnClientAppointmentEditing="Client_AppointmentBeforeUpdate"
OnClientAppointmentMoveEnd="Client_AppointmentAfterDrop"
OnClientAppointmentResizing="appointmentResizing"
OnClientAppointmentResizeEnd="Client_AppointmentAfterResizing"
OnClientFormCreated="Client_AfterFormRender"
DataKeyField="ID" DataEndField = "End"
DataRecurrenceField = "RecurrenceRule" DataRecurrenceParentKeyField = "RecurrenceParentID"
DataStartField = "Start" DataSubjectField = "Subject" StartInsertingInAdvancedForm="true"
StartEditingInAdvancedForm="true" >
<AppointmentTemplate><asp:Panel id="cellBackground" runat="server" Font-Bold="false" Font-Size="Smaller" ><asp:Image ID="recurrenceIcon" runat="server" /><%# Eval("Subject") %><asp:Image ID="harmonyIcon" runat="server" /></asp:Panel>
</AppointmentTemplate><TimelineView UserSelectable="false" />
</telerik:radscheduler>
Any help would be appreciated.
Thanks,
Antonio