Hi,
I'm trying to create a simple inline edit template, but when I double-click on an appointment in the Scheduler I seem to get some default appointment editing dialog with "Save" and "Cancel" buttons near the bottom right-hand corner.
Here is the code I'm using:
Can someone tell me what I'm doing wrong?
Thanks,
Greg
I'm trying to create a simple inline edit template, but when I double-click on an appointment in the Scheduler I seem to get some default appointment editing dialog with "Save" and "Cancel" buttons near the bottom right-hand corner.
Here is the code I'm using:
| <telerik:RadScheduler runat="server" ID="RadScheduler1" |
| Width="750px" |
| Height="650px" |
| SelectedView="MonthView" |
| FirstDayOfWeek="Monday" |
| LastDayOfWeek="Friday" |
| SelectedDate="2008-06-01" |
| StartInsertingInAdvancedForm="false" |
| EnableCustomAttributeEditing="true" |
| ProviderName="ReadOnlySchedulerData" |
| OnAppointmentDataBound="RadScheduler1_AppointmentDataBound"> |
| <InlineEditTemplate> |
| <div id="InlineEditTemplate" class=""> |
| <asp:TextBox ID="TitleTextBox" runat="server" Text='<%# Bind("Subject") %>' Width="90%" TextMode="MultiLine" Height="20px"></asp:TextBox> |
| <asp:LinkButton ID="InsertButton" runat="server" CommandName="Update" Text="Cancel"></asp:LinkButton> |
| <asp:LinkButton ID="InsertCancelButton" runat="server" CausesValidation="False" CommandName="Cancel" Text="Cancel"></asp:LinkButton> |
| <asp:LinkButton ID="InsertMoreButton" runat="server" CommandName="More" CssClass="rsAdvancedEditLink">Advanced</asp:LinkButton> |
| </div> |
| </InlineEditTemplate> |
| </telerik:RadScheduler> |
Can someone tell me what I'm doing wrong?
Thanks,
Greg