Dear All,
I´m pretty new to Telrik controls and have the following question.
I want to Update in real time my radSchedular when clicking on RadCalendar like illustrated in this sample:
http://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultcs.aspx,
The radSchedulat doesn't synchronise when i click to a date on RadCalendar date: Could you help me to find the source of the issue please?
Source code:
<telerik:radscheduler runat="server" id="RadScheduler1"
DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End" DataDescriptionField="Description"
DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentId" DataReminderField="Reminder"
OnAppointmentDataBound="DiaryRadScheduler_AppointmentDataBound" OnAppointmentCommand="DiaryRadScheduler_AppointmentCommand"
AllowDelete="false" AllowEdit="false" AllowInsert="false" EnableDescriptionField="true"
EnableRecurrenceSupport="false" EnableResourceEditing="false" EnableExactTimeRendering="false"
DayStartTime="08:00:00" DayEndTime="20:00:00" WorkDayStartTime="09:00:00" WorkDayEndTime="18:00:00"
WeekView-DayStartTime="08:00:00" WeekView-DayEndTime="20:00:00" WeekView-WorkDayStartTime="09:00:00" WeekView-WorkDayEndTime="18:00:00" WeekView-EnableExactTimeRendering="true"
MultiDayView-DayStartTime="08:00:00" MultiDayView-DayEndTime="20:00:00" MultiDayView-WorkDayStartTime="09:00:00" MultiDayView-WorkDayEndTime="20:00:00" MultiDayView-NumberOfDays="5" MultiDayView-EnableExactTimeRendering="true"
AppointmentStyleMode="Auto" SelectedView="AgendaView"
StartEditingInAdvancedForm="true" StartInsertingInAdvancedForm="true"
ShowHeader="true" ShowFooter="true" ShowAllDayRow="false" ShowDateHeaders="true" ShowFullTime="false" OverflowBehavior="Expand"
RowHeight="25px" RowHeaderWidth="50px" MinutesPerRow="30" TimeLabelRowSpan="2"
FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" HoursPanelTimeFormat="HH:mm tt">
<DayView HeaderDateFormat="d" UserSelectable="true" />
<WeekView HeaderDateFormat="d" UserSelectable="true" />
<MonthView HeaderDateFormat="d" UserSelectable="true" />
<AgendaView HeaderDateFormat="d" UserSelectable="true" />
<TimelineView UserSelectable="false" />
<MultiDayView UserSelectable="false" />
<AdvancedForm Modal="true" />
<AppointmentTemplate>
<%# Container.Appointment.Resources.GetResourceByType("Type").Text%><br /><%# Eval("Subject") %><br /><%# Eval("Description") %>
<div>
<asp:Button runat="server" ID="BtnExport" CssClass="rsExportButton" ToolTip="Export to iCalendar" CommandName="Export" OnClientClick="Export(this, event); return false;" style="border: none; cursor: pointer;" />
</div>
</AppointmentTemplate>
</telerik:radscheduler>
Code Behind:
RadScheduler1.DataSource = DataSourceRadSchedular;
Thanks in advance for your help.
I´m pretty new to Telrik controls and have the following question.
I want to Update in real time my radSchedular when clicking on RadCalendar like illustrated in this sample:
http://demos.telerik.com/aspnet-ajax/scheduler/examples/overview/defaultcs.aspx,
The radSchedulat doesn't synchronise when i click to a date on RadCalendar date: Could you help me to find the source of the issue please?
Source code:
<telerik:radscheduler runat="server" id="RadScheduler1"
DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End" DataDescriptionField="Description"
DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentId" DataReminderField="Reminder"
OnAppointmentDataBound="DiaryRadScheduler_AppointmentDataBound" OnAppointmentCommand="DiaryRadScheduler_AppointmentCommand"
AllowDelete="false" AllowEdit="false" AllowInsert="false" EnableDescriptionField="true"
EnableRecurrenceSupport="false" EnableResourceEditing="false" EnableExactTimeRendering="false"
DayStartTime="08:00:00" DayEndTime="20:00:00" WorkDayStartTime="09:00:00" WorkDayEndTime="18:00:00"
WeekView-DayStartTime="08:00:00" WeekView-DayEndTime="20:00:00" WeekView-WorkDayStartTime="09:00:00" WeekView-WorkDayEndTime="18:00:00" WeekView-EnableExactTimeRendering="true"
MultiDayView-DayStartTime="08:00:00" MultiDayView-DayEndTime="20:00:00" MultiDayView-WorkDayStartTime="09:00:00" MultiDayView-WorkDayEndTime="20:00:00" MultiDayView-NumberOfDays="5" MultiDayView-EnableExactTimeRendering="true"
AppointmentStyleMode="Auto" SelectedView="AgendaView"
StartEditingInAdvancedForm="true" StartInsertingInAdvancedForm="true"
ShowHeader="true" ShowFooter="true" ShowAllDayRow="false" ShowDateHeaders="true" ShowFullTime="false" OverflowBehavior="Expand"
RowHeight="25px" RowHeaderWidth="50px" MinutesPerRow="30" TimeLabelRowSpan="2"
FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" HoursPanelTimeFormat="HH:mm tt">
<DayView HeaderDateFormat="d" UserSelectable="true" />
<WeekView HeaderDateFormat="d" UserSelectable="true" />
<MonthView HeaderDateFormat="d" UserSelectable="true" />
<AgendaView HeaderDateFormat="d" UserSelectable="true" />
<TimelineView UserSelectable="false" />
<MultiDayView UserSelectable="false" />
<AdvancedForm Modal="true" />
<AppointmentTemplate>
<%# Container.Appointment.Resources.GetResourceByType("Type").Text%><br /><%# Eval("Subject") %><br /><%# Eval("Description") %>
<div>
<asp:Button runat="server" ID="BtnExport" CssClass="rsExportButton" ToolTip="Export to iCalendar" CommandName="Export" OnClientClick="Export(this, event); return false;" style="border: none; cursor: pointer;" />
</div>
</AppointmentTemplate>
</telerik:radscheduler>
Code Behind:
RadScheduler1.DataSource = DataSourceRadSchedular;
Thanks in advance for your help.