I've used the following desing for the InlineInsert.
Check out the attachments for the rendering problem.
| <InlineInsertTemplate> |
| <div id="InlineInsertTemplate" class="rsCustomAppointmentContainer"> |
| <asp:Label ID="lblTitle" runat="server" Text="Add New Appointment"></asp:Label> |
| <hr /> |
| <table cellspacing="5" width="400px"> |
| <tr> |
| <td><asp:Label ID="lblSubject" runat="server" Text="Title"></asp:Label> </td> |
| <td><Telerik:RadTextBox ID="txtInlineInsertTitle" runat="server" Width="150px" Text='<%# Bind("Subject") %>'></Telerik:RadTextBox></td> |
| </tr> |
| <tr> |
| <td><asp:Label ID="lblList" runat="server" Text="Source List"></asp:Label> </td> |
| <td><Telerik:RadComboBox ID="cbxInlineInsertLists" runat="server"></Telerik:RadComboBox></td> |
| </tr> |
| <tr> |
| <td align="center"> |
| <asp:Button ID="btnInlineInsert" runat="server" Text="Add" CommandName="inlineInsert" ValidationGroup="grpInlineInsert" /> |
| |
| <asp:Button ID="btnInlineCancel" runat="server" Text="Cancel" CommandName="inlineCancel" /> |
| </td> |
| </tr> |
| <tr> |
| <td colspan="2"> |
| <asp:RequiredFieldValidator ID="rfvTitle" runat="server" Display="dynamic" ControlToValidate="txtInlineInsertTitle" Text="Title cannot be empty" ValidationGroup="grpInlineInsert" /> |
| </td> |
| </tr> |
| </table> |
| </div> |
| </InlineInsertTemplate> |
Check out the attachments for the rendering problem.
