or
<telerik:RadEditor ID="txt_ft_comments" OnClientLoad="OnClientLoad" SpellCheckSettings-DictionaryPath="../App_Data/RadSpell/en-US.tdf" SpellCheckSettings-SpellCheckProvider="EditDistanceProvider" SpellCheckSettings-DictionaryLanguage="en-US,English" SpellCheckSettings-WordIgnoreOptions="None" SpellCheckSettings-AllowAddCustom="true" runat="server" ImageManager-ViewPaths="~/images" Height="250px"> <Tools> <telerik:EditorToolGroup> <telerik:EditorTool Name="Print" Visible="true" /> <telerik:EditorTool Name="SpellCheck" Visible="true" Enabled="true" /> <telerik:EditorTool Name="FindAndReplace" Visible="true" /> <telerik:EditorTool Name="SelectAll" Visible="true" /> <telerik:EditorTool Name="Cut" Visible="true" /> <telerik:EditorTool Name="Copy" Visible="true" /> <telerik:EditorTool Name="Paste" Visible="true" /> <telerik:EditorTool Name="Undo" Visible="true" /> <telerik:EditorTool Name="Redo" Visible="true" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="Superscript" Visible="true" /> <telerik:EditorTool Name="Subscript" Visible="true" /> <telerik:EditorTool Name="InsertParagraph" Visible="true" /> <telerik:EditorTool Name="InsertGroupbox" Visible="true" /> <telerik:EditorTool Name="InsertHorizontalRule" Visible="true" /> <telerik:EditorTool Name="InsertDate" Visible="true" /> <telerik:EditorTool Name="InsertTime" Visible="true" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="StyleBuilder" Visible="true" /> <telerik:EditorTool Name="FontName" Visible="true" /> <telerik:EditorTool Name="FontSize" Visible="true" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="Bold" Visible="true" /> <telerik:EditorTool Name="Italic" Visible="true" /> <telerik:EditorTool Name="Underline" Visible="true" /> <telerik:EditorTool Name="StrikeThrough" Visible="true" /> <telerik:EditorTool Name="ImageManager" Visible="true" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="JustifyLeft" Visible="true" /> <telerik:EditorTool Name="JustifyCenter" Visible="true" /> <telerik:EditorTool Name="JustifyRight" Visible="true" /> <telerik:EditorTool Name="JustifyNone" Visible="true" /> <telerik:EditorTool Name="Indent" Visible="true" /> <telerik:EditorTool Name="Outdent" Visible="true" /> <telerik:EditorTool Name="InsertOrderedList" Visible="true" /> <telerik:EditorTool Name="XhtmlValidator" Visible="true" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="ForeColor" Visible="true" /> <telerik:EditorTool Name="BackColor" Visible="true" /> <telerik:EditorTool Name="InsertSymbol" Visible="true" /> <telerik:EditorTool Name="InsertTable" Visible="true" /> <telerik:EditorTool Name="InsertFormElement" Visible="true" /> <telerik:EditorTool Name="ConvertToLower" Visible="true" /> <telerik:EditorTool Name="ConvertToUpper" Visible="true" /> <telerik:EditorTool Name="Zoom" Visible="true" /> </telerik:EditorToolGroup> </Tools> </telerik:RadEditor>| <telerik:RadGrid ID="RadGrid1" runat="server" AutoGenerateColumns="False" Width="75%" |
| Skin="Hay" HorizontalAlign="Center" AllowMultiRowSelection="False" |
| AllowPaging="True" PageSize="5" GridLines="None" AllowMultiColumnSorting="True" |
| > |
| <MasterTableView DataKeyNames="ContentID" |
| GroupLoadMode="Server"> |
| <Columns> |
| <telerik:GridBoundColumn DataField="Question" HeaderText="About" SortExpression="Question" |
| UniqueName="Question"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| <NestedViewSettings> |
| <ParentTableRelation> |
| <telerik:GridRelationFields DetailKeyField="ContentID" MasterKeyField="ContentID" /> |
| </ParentTableRelation> |
| </NestedViewSettings> |
| <NestedViewTemplate> |
| <asp:Panel ID="NestedViewPanel" runat="server" CssClass="viewWrap"> |
| <div class="contactWrap"> |
| <fieldset style="padding: 2px;"> |
| <legend style="padding: 2px;"><b>Answer</b> |
| </legend> |
| <table> |
| <tr> |
| <td> |
| <table> |
| <tr> |
| <td> |
| <asp:Label ID="cityLabel" Text='<%#Bind("Answer") %>' runat="server"></asp:Label> |
| </td> |
| </tr> |
| <tr> |
| </table> |
| </td> |
| </tr> |
| </table> |
| </fieldset> |
| </div> |
| </asp:Panel> |
| </NestedViewTemplate> |
| </MasterTableView> |
| <PagerStyle Mode="NumericPages"></PagerStyle> |
| </telerik:RadGrid> |