I have created my own advanced form "AdvancedForm.ascx"
At the top of my .aspx file i have put:
<%@ Register TagPrefix="scheduler" TagName="AdvancedForm" Src="~/admin/Scheduler/AdvancedForm.ascx" %>
Then further down in the scheduler i have put the following:
<telerik:RadScheduler ID="RadScheduler1" runat="server" Width="100%" Height="100%"
DataKeyField="ScheduleID" DataSubjectField="Subject" DataStartField="TimeStart"
DataEndField="TimeEnd" Skin="WebBlue" ShowFooter="False" StartInsertingInAdvancedForm="True"
OnClientFormCreated="schedulerFormCreated" OnAppointmentInsert="RadScheduler1_AppointmentInsert"
OnAppointmentDelete="RadScheduler1_AppointmentDelete" OnAppointmentUpdate="RadScheduler1_AppointmentUpdate"
SelectedView="MonthView">
<AdvancedForm Modal="true" enablecustomattributeediting="True" />
<TimelineView UserSelectable="false" />
<TimeSlotContextMenuSettings EnableDefault="true" />
<AppointmentContextMenuSettings EnableDefault="true" />
<AdvancedInsertTemplate>
<scheduler:AdvancedForm runat="server" ID="AdvancedEditForm" Mode="Insert" />
</AdvancedInsertTemplate>
<AdvancedEditTemplate>
<scheduler:AdvancedForm runat="server" ID="AdvancedEditForm" Mode="Edit" />
</AdvancedEditTemplate>
</telerik:RadScheduler>
Is anyone able to tell me whey when i double click on the scheduler in run-time i.e. add appointment, nothing happens? That is the advanced form control is not popping up.
At the top of my .aspx file i have put:
<%@ Register TagPrefix="scheduler" TagName="AdvancedForm" Src="~/admin/Scheduler/AdvancedForm.ascx" %>
Then further down in the scheduler i have put the following:
<telerik:RadScheduler ID="RadScheduler1" runat="server" Width="100%" Height="100%"
DataKeyField="ScheduleID" DataSubjectField="Subject" DataStartField="TimeStart"
DataEndField="TimeEnd" Skin="WebBlue" ShowFooter="False" StartInsertingInAdvancedForm="True"
OnClientFormCreated="schedulerFormCreated" OnAppointmentInsert="RadScheduler1_AppointmentInsert"
OnAppointmentDelete="RadScheduler1_AppointmentDelete" OnAppointmentUpdate="RadScheduler1_AppointmentUpdate"
SelectedView="MonthView">
<AdvancedForm Modal="true" enablecustomattributeediting="True" />
<TimelineView UserSelectable="false" />
<TimeSlotContextMenuSettings EnableDefault="true" />
<AppointmentContextMenuSettings EnableDefault="true" />
<AdvancedInsertTemplate>
<scheduler:AdvancedForm runat="server" ID="AdvancedEditForm" Mode="Insert" />
</AdvancedInsertTemplate>
<AdvancedEditTemplate>
<scheduler:AdvancedForm runat="server" ID="AdvancedEditForm" Mode="Edit" />
</AdvancedEditTemplate>
</telerik:RadScheduler>
Is anyone able to tell me whey when i double click on the scheduler in run-time i.e. add appointment, nothing happens? That is the advanced form control is not popping up.