I am filtering my grid with a drop down. I would like to apply multiple values to the filter.
In my drop down I have these item appended to my databound list
So for example, filter on column status, value of ALL Open I would want to do something like this: ([Status] = 'Open' OR [Status] = 'Hold')
Looking at the help I don't see how to filter mutiple values, unless the "Custom" option fits this?
I only see how to filter single values like this: tableView.filter("Status", filterVal,"EqualTo");
http://www.telerik.com/help/aspnet-ajax/grid-gridtableview-filter.html
Thanks
In my drop down I have these item appended to my databound list
AppendDataBoundItems="true"<Items> <telerik:RadComboBoxItem Text="All" /> <telerik:RadComboBoxItem Text="All Open" Value="ALL Open" /></Items>So for example, filter on column status, value of ALL Open I would want to do something like this: ([Status] = 'Open' OR [Status] = 'Hold')
Looking at the help I don't see how to filter mutiple values, unless the "Custom" option fits this?
I only see how to filter single values like this: tableView.filter("Status", filterVal,"EqualTo");
http://www.telerik.com/help/aspnet-ajax/grid-gridtableview-filter.html
Thanks