DIV.radwindow_Gray TABLE TD.topleft
{
background-image: url(Images/Design/Window/PopupTitle_Left.png);
height: 23px;
}
<custom:CustomFilter DataField1 = "Name" DataField2="LastName"
HeaderText="Name"
CurrentFilterFunction="Contains"
UniqueName="UserName"
AutoPostBackOnFilter="True">
<ItemTemplate>
<asp:Literal ID="Literal1" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Name") %>'></asp:Literal>
<asp:Literal ID="Literal2" runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "LastName") %>'></asp:Literal>
</ItemTemplate>
</custom:CustomFilter>
The issue comes when i try to use filterexpression
RadGrid1.DataSource = Data.GetAll();
string test = "(([LastName] LIKE \'%" + txtFilterBox.Text + "%\') OR ([Name] LIKE \'%" + txtFilterBox.Text + "%\'))";
RadGrid1.MasterTableView.FilterExpression = test;
RadGrid1.Rebind();
its probally wrong the way i use the filterexpression but how I should use it with 2 parameters, cant find a simmilar example :)

<form id="form1" runat="server"> <asp:ScriptManager ID="MyScriptManager" runat="server"></asp:ScriptManager> <div> <telerik:RadWindow ID="RadWindow1" Width="750" Height="500" OnClientShow="OnClientShow" runat="server" VisibleOnPageLoad="true"> <ContentTemplate> <div id="editorWrapper" style="padding: 5px; display: none;"> <telerik:RadEditor ID="RadEditorWithRadWindow" OnClientLoad="RadEditorWithRadWindowOnClientLoad" runat="server" Width="600px" Height="250px" Visible="true" EnableEmbeddedScripts="true"> <Content> </Content> </telerik:RadEditor> </div> </ContentTemplate> </telerik:RadWindow> <telerik:RadEditor ID="RadEditorNoRadWindow" OnClientLoad="RadEditorNoRadWindowOnClientLoad" runat="server" Width="600px" Height="250px" Visible="true" EnableEmbeddedScripts="true"> <Content> </Content> </telerik:RadEditor> <script type="text/javascript"> function RadEditorWithRadWindowOnClientLoad(editor, args) { editor.attachEventHandler("onkeypress", function (e) { alert('We CANNOT reach this one'); } ); } function RadEditorNoRadWindowOnClientLoad(editor, args) { editor.attachEventHandler("onkeypress", function (e) { alert('We CAN reach this one'); } ); } function OnClientShow(sender, args) { // Fix the size problem in IE. var editorParent = $get('editorWrapper'); editorParent.style.display = ''; // Fixes the problem with the content area in FF and Safari var editor = $find('<%= RadWindow1.ContentContainer.FindControl("RadEditorWithRadWindow").ClientID %>'); editor.onParentNodeChanged(); var style = editor.get_contentArea().style; style.backgroundImage = "none"; style.backgroundColor = "white"; } </script> </div> </form>