In my Scheduler when I dbl-click on the scheduler to schedule a new appt, click on "Options", I don't see any of the advanced options such as recurrence there. How do I get these to show up?
Here's a screenshot of what I see.
Here's my control in my .ASPX page
<telerik:RadScheduler ID="rscSchedule" runat="server"
DataKeyField="Appointment_ID"
DataEndField="EndTime"
DataStartField="StartTime"
DataSubjectField="Subject"
AllowInsert="true"
AllowDelete="true"
AllowEdit="true"
DayStartTime="05:00:00"
DayEndTime="19:00:00"
FirstDayOfWeek="Monday"
LastDayOfWeek="Friday"
MinutesPerRow="15"
ShowViewTabs="true"
ShowFooter="false"
WorkDayStartTime="05:00:00"
WorkDayEndTime="19:00:00"
EnableDescriptionField="true"
AppointmentStyleMode="Default"
Width="900"
Height="700"
GroupBy="Nurses"
OnAppointmentInsert="rscSchedule_Insert"
OnAppointmentDelete="rscSchedule_Delete"
OnAppointmentUpdate="rscSchedule_Update"
OnAppointmentClick="rscSchedule_Click"
OnAppointmentDataBound="rscSchedule_AppointmentDataBound"
OnNavigationComplete="rscSchedule_NavigationComplete">
<AdvancedForm Enabled="true" EnableCustomAttributeEditing="false" EnableResourceEditing="false" Modal="true" />
<TimelineView UserSelectable="false" />
<ResourceTypes>
<telerik:ResourceType Name="Nurses" KeyField="Staff_ID" TextField="FullNameUpperCase" ForeignKeyField="Staff_ID" />
</ResourceTypes>
<TimeSlotContextMenuSettings EnableDefault="true" />
<AppointmentContextMenuSettings EnableDefault="true" />
</telerik:RadScheduler>
Here's a screenshot of what I see.
Here's my control in my .ASPX page
<telerik:RadScheduler ID="rscSchedule" runat="server"
DataKeyField="Appointment_ID"
DataEndField="EndTime"
DataStartField="StartTime"
DataSubjectField="Subject"
AllowInsert="true"
AllowDelete="true"
AllowEdit="true"
DayStartTime="05:00:00"
DayEndTime="19:00:00"
FirstDayOfWeek="Monday"
LastDayOfWeek="Friday"
MinutesPerRow="15"
ShowViewTabs="true"
ShowFooter="false"
WorkDayStartTime="05:00:00"
WorkDayEndTime="19:00:00"
EnableDescriptionField="true"
AppointmentStyleMode="Default"
Width="900"
Height="700"
GroupBy="Nurses"
OnAppointmentInsert="rscSchedule_Insert"
OnAppointmentDelete="rscSchedule_Delete"
OnAppointmentUpdate="rscSchedule_Update"
OnAppointmentClick="rscSchedule_Click"
OnAppointmentDataBound="rscSchedule_AppointmentDataBound"
OnNavigationComplete="rscSchedule_NavigationComplete">
<AdvancedForm Enabled="true" EnableCustomAttributeEditing="false" EnableResourceEditing="false" Modal="true" />
<TimelineView UserSelectable="false" />
<ResourceTypes>
<telerik:ResourceType Name="Nurses" KeyField="Staff_ID" TextField="FullNameUpperCase" ForeignKeyField="Staff_ID" />
</ResourceTypes>
<TimeSlotContextMenuSettings EnableDefault="true" />
<AppointmentContextMenuSettings EnableDefault="true" />
</telerik:RadScheduler>