or
| <telerik:RadGrid ID="grdFilters" runat="server" Width="614px" Height="150px" Skin="Web20" |
| AllowSorting="true" AutoGenerateColumns="false" AllowAutomaticDeletes="True"> |
| <MasterTableView RetrieveAllDataFields="false" ShowHeadersWhenNoRecords="true" |
| EnableNoRecordsTemplate="true" CommandItemDisplay="None" TableLayout="Fixed" > |
| <Columns> |
| <telerik:GridBoundColumn DataField="FieldName" SortExpression="FieldName" |
| HeaderText="Filter Type" HeaderStyle-Width="140px" > |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="FieldCompTypeText" SortExpression="FieldCompTypeText" |
| HeaderText="Operand" HeaderStyle-Width="120px" > |
| </telerik:GridBoundColumn> |
| <telerik:GridBoundColumn DataField="FieldCompValueText" SortExpression="FieldCompValueText" |
| HeaderStyle-Width="230px" HeaderText="Value" > |
| </telerik:GridBoundColumn> |
| <telerik:GridButtonColumn Text="Delete" CommandName="Delete" ButtonType="ImageButton"> |
| <HeaderStyle Width="70px" /> |
| </telerik:GridButtonColumn> |
| <telerik:GridBoundColumn DataField="FieldLineItem" Visible="false" HeaderStyle-Width="0px"> |
| </telerik:GridBoundColumn> |
| </Columns> |
| <NoRecordsTemplate > |
| <div style="font-style: italic; vertical-align: middle; text-align:center;"> |
| <br /><br /> |
| No filters to display |
| </div> |
| </NoRecordsTemplate> |
| </MasterTableView> |
| <ClientSettings Scrolling-AllowScroll="true" Scrolling-SaveScrollPosition="true" |
| Scrolling-UseStaticHeaders="true" Selecting-AllowRowSelect="true" |
| EnablePostBackOnRowClick="true" > |
| </ClientSettings> |
| </telerik:RadGrid> |
| <telerik:RadEditor ID="reQuestionText" OnClientLoad="OnClientLoad" StripFormattingOnPaste="MSWord" |
| EditModes="Design" Width="100%" Height="150px" runat="server" ToolsFile="~/Controls/Telerik/RadEditorBasicTools.xml" /> |
| protected void Page_Load(object sender, EventArgs e) |
| { |
| if(!IsPostBack) |
| reQuestionText.Visible = false; |
| } |
| protected void btnDisplayEditor_Click(object sender, EventArgs e) |
| { |
| reQuestionText.Visible = true; |
| } |
| protected void btnSave_Click(object sender, EventArgs e) |
| { |
| SaveRadEditorContent(); |
| } |

| <asp:Button Skin="Web20" Style="color: #fff; width: 100px;" ID="btnSearch" runat="server" Text="Search" EnableEmbeddedScripts="false" /> |
| <asp:Button Skin="Web20" Style="color: #fff; width: 100px;" ID="btnResetSearch" runat="server" Text="Reset" /> |
| .... |
| .... |
| <telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="Buttons,Textbox" Skin="Web20"> |
| </telerik:RadFormDecorator> |


editor.disabled=
false; is not working out...
