Is there a way to Client side filter a grid on multiple columns? As an example, say I have two columns; Title & Description. If I have a textbox where someone can enter a filter term I want to be able to use that serch term on both columns in an OR fashion to accomplish the following
3 Answers, 1 is accepted
0
Yavor
Telerik team
answered on 09 Jul 2009, 12:50 PM
Hello Gagan,
Basically, you can trigger the filter command for the control on the client. However, to perform the operation, the code will cause a trip to the server. In this case, you can also consider simply making an ajax request to the server, where you can set the RadGrid1.MasterTableView.FilterExpression directly, taking into account more than one requirement via the OR clause.
I hope this helps.