[Solved] Radgrid gridtable view apply multiple filters via filter method

1 Answer 17 Views
Grid
Brete
Top achievements
Rank 1
Brete asked on 03 Mar 2026, 09:13 PM

I am filtering a grid (tableview) in javascript  to filter to a single condition. 

 

 $find(tableViewID).filter("Photo_Group", args.get_item().get_value(), "EqualTo");

 

However, where can I find how to filter to multiple conditions.  

Ie the above condition OR filter("Photo_Group", "-1", "EqualTo");

I can see how to do this using the Filtering control,  but I cannot show/use a filtering control on the page.     

1 Answer, 1 is accepted

Sort by
0
Vasko
Telerik team
answered on 06 Mar 2026, 07:37 AM

Hello Brete,

The RadGrid client-side API (filter method) does not support combining multiple filter conditions for the same column using an OR operator. When you call tableView.filter("Photo_Group", value, "EqualTo"), it replaces any existing filter for that column. Chaining multiple filter() calls will not create an OR condition, instead, the latest filter will overwrite the previous one for the same column.

What I would suggest you try is the examples demonstrated in the Programmatic filtering on Sever-side article.

    Regards,
    Vasko
    Progress Telerik

    Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources
    Tags
    Grid
    Asked by
    Brete
    Top achievements
    Rank 1
    Answers by
    Vasko
    Telerik team
    Share this question
    or