Hi,
We are using our custom tables to store appointments and recurence rules.
We are facing an problem while editing the appt (i.e. double click and edit)
While editing a recurring appt, we get the following options - Which is good.
1.Edit this Occurrence
2.Edit the series
if "Edit this occurrence" is selected the inline edit form opens with the details populated and i can update. -> No issues here
but if i click Edit the series,the inline edit form opens but no data's gets populated.
In FormCreated e.appointment object is null.
Thanks for any suggestions
Code:
<InlineEditTemplate>
<asp:TextBox runat="server" ID="txtEdit" Height="50%" Text='<%# Eval("Subject") %>' Width="95%">
</asp:TextBox>
<div>
<table>
<tr>
<td>
<asp:Label ID="lblEditStartTime" Visible="false" runat="server" Text="Start time:"></asp:Label>
</td>
<td>
<telerik:RadTimePicker ID="tpEditStartTime" Visible="false" SelectedDate='<%# Bind("Start") %>' Skin="Web20" runat="server">
</telerik:RadTimePicker>
</td>
<td>
<asp:Label ID="lblEditEndTime" Visible="true" runat="server" Text="End time:"></asp:Label>
</td>
<td>
<telerik:RadTimePicker ID="tpEditEndTime" SelectedDate='<%# Bind("End") %>' Skin="Web20" runat="server">
</telerik:RadTimePicker>
</td>
<td>
<asp:Button ID="btnUpdate" runat="server" SkinID="Web20" CommandName="Update" Text="Update" />
</td>
<td>
<asp:Button ID="btnCancel" runat="server" SkinID="Web20" CommandName="Cancel" Text="Cancel" />
</td>
</tr>
</table>
<asp:Label ID="lblId" Visible="false" runat="server" Text='<%# Bind("ID") %>'></asp:Label>
</div>
</InlineEditTemplate>