Hi Telerik,
Really enjoying integrating the Scheduler Control, found the documentation great and control simple to integrate.
I’m using control in the web service mode but have two problems:
1) In Month view when there is more than one appointment in a day slot when "more..." is clicked i would like to handle this and display the timeline view.
2) In the timeline view i would like to switch of the resize handle as im only displaying start dates.
Thanks,
Debbie
Markup:
| <telerik:RadScheduler ID="RadScheduler1" runat="server" |
| OnClientAppointmentsPopulating="doClientAppointmentsPopulating" |
| OnClientAppointmentInserting="doClientAppointmentInserting" |
| OnClientAppointmentEditing="doClientAppointmentEditing" |
| OnClientAppointmentDeleting="doClientAppointmentDeleting" |
| OnClientAppointmentContextMenu="doClientAppointmentContextMenu" |
| OnClientAppointmentContextMenuItemClicked="doClientAppointmentContextMenuItemClicked" |
| OnClientTimeSlotContextMenu="doClientTimeSlotContextMenu" |
| OnClientTimeSlotContextMenuItemClicked="doClientTimeSlotContextMenuItemClicked" |
| Localization-ConfirmDeleteText="Are you sure you want to delete this announcement." |
| Localization-ContextMenuAddAppointment="New Announcement" |
| DisplayDeleteConfirmation="True" |
| TimelineView-NumberOfSlots="7" |
| SelectedView="MonthView" |
| GroupingDirection="Vertical" |
| FirstDayOfWeek="Monday" |
| LastDayOfWeek="Sunday" |
| DataKeyField="ID" |
| DataSubjectField="Subject" |
| DataStartField="Start" |
| DataEndField="End" |
| DataRecurrenceField="RecurrenceRule" |
| DataRecurrenceParentKeyField="RecurrenceParentID" |
| OverflowBehavior="Expand" |
| ShowAllDayRow="true" |
| ShowFullTime="false" |
| ShowViewTabs="true" |
| StartEditingInAdvancedForm="true" |
| StartInsertingInAdvancedForm="true"> |
| <WebServiceSettings |
| Path="~/AdminV9/News/NewsSchedulerWS.asmx" |
| ResourcePopulationMode="Manual" /> |
| <%-- Header formating --%> |
| <DayView |
| UserSelectable="false" /> |
| <WeekView |
| UserSelectable="false" /> |
| <MonthView |
| UserSelectable="true" |
| HeaderDateFormat="MMM, yyyy" |
| AdaptiveRowHeight="false" |
| VisibleAppointmentsPerDay="2" /> |
| <TimelineView |
| UserSelectable="true" |
| HeaderDateFormat="MMM dd, yyyy" |
| ColumnHeaderDateFormat="ddd dd" /> |
| <MultiDayView |
| UserSelectable="false" /> |
| <%-- Context menus --%> |
| <TimeSlotContextMenuSettings EnableDefault="true" /> |
| <TimeSlotContextMenus> |
| <telerik:RadSchedulerContextMenu> |
| <Items> |
| <telerik:RadMenuItem Text="New Announcement" Value="CustomAdd" /> |
| <telerik:RadMenuItem Text="Go to today" Value="CommandGoToToday" /> |
| </Items> |
| </telerik:RadSchedulerContextMenu> |
| </TimeSlotContextMenus> |
| <AppointmentContextMenuSettings EnableDefault="true" /> |
| <AppointmentContextMenus> |
| <telerik:RadSchedulerContextMenu> |
| <Items> |
| <telerik:RadMenuItem Text="Edit" Value="CommandEdit" /> |
| <telerik:RadMenuItem Text="Delete" Value="CommandDelete" /> |
| </Items> |
| </telerik:RadSchedulerContextMenu> |
| </AppointmentContextMenus> |
| <%--Forms --%> |
| <AdvancedForm Modal="true" /> |
| </telerik:RadScheduler> |