or
| <telerik:GridCheckBoxColumn DataField="Dhcp" HeaderText="DHCP"></telerik:GridCheckBoxColumn> |
| <telerik:GridBoundColumn DataField="Address" HeaderText="Address"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Mask" HeaderText="Mask" ></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Gateway" HeaderText="Gateway" ></telerik:GridBoundColumn> |
| <telerik:GridCheckBoxColumn DataField="Dhcp" HeaderText="DHCP"></telerik:GridCheckBoxColumn> |
| <telerik:GridBoundColumn DataField="Address" HeaderText="Address"></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Mask" HeaderText="Mask" ></telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="Gateway" HeaderText="Gateway" ></telerik:GridBoundColumn> |
Thanks,
Steve

| <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> |
Setting a custom skin on a datapager integrated into a radlistview control fails when the control renders the RadDataPagerButtonFields since it can't find any custom skin for the controls.
| <telerik:RadDataPager ID="ListViewPager" EnableEmbeddedSkins="false" Skin="Custom" ...> |
| <Fields> |
| <telerik:RadDataPagerButtonField FieldType="FirstPrev" /> |
| <telerik:RadDataPagerButtonField FieldType="Numeric" /> ... |
| <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> |