Hi,
I have implemented a RadScheduler that uses a custom control and can successfully add appointments, but I'm having issues editing and deleting appointments. I'd like to call the event server side and not client-side, However the AppointmentDelete and AppointmentUpdate event handlers wont fire, any idea as to what might be the cause?
I have implemented a RadScheduler that uses a custom control and can successfully add appointments, but I'm having issues editing and deleting appointments. I'd like to call the event server side and not client-side, However the AppointmentDelete and AppointmentUpdate event handlers wont fire, any idea as to what might be the cause?
<
telerik:RadScheduler
ID
=
"RadScheduler1"
runat
=
"server"
Height
=
"427px"
StartInsertingInAdvancedForm
=
"true"
Skin
=
"Hay"
Width
=
"492px"
Visible
=
"True"
ViewStateMode
=
"Enabled"
AppointmentStyleMode
=
"Simple"
>
<
TimelineView
UserSelectable
=
"False"
/>
<
DayView
UserSelectable
=
"True"
/>
<
MonthView
UserSelectable
=
"False"
/>
<
AdvancedEditTemplate
>
<
scheduler:AdvancedForm
runat
=
"server"
ID
=
"AdvancedEditForm1"
Mode
=
"Edit"
Start='<%# Bind("Start") %>'
End='<%# Bind("End") %>' />
</
AdvancedEditTemplate
>
<
AdvancedInsertTemplate
>
<
scheduler:AdvancedForm
runat
=
"server"
ID
=
"AdvancedInsertForm1"
Mode
=
"Insert"
Start='<%# Bind("Start") %>'
End='<%# Bind("End") %>' />
</
AdvancedInsertTemplate
>
</
telerik:RadScheduler
>