I'm using the Grid control with an OData DataSource. I'd like to be able to add filters that use OData v3's any/all capabilities. I am okay with creating the filters outside the grid, but I am unsure how I can add them to the DataSource's filter array. It doesn't seem that the standard { field: 'foo', operator: 'eq', value:'bar' } filters will work in this scenario. The filter that I need to add needs to generate a string like "Foos/any(f: substringof('bar', f/Name) eq true)" as part of the OData url's filter parameter.