Here's what I'm doing:
// client side:
//I get a grid datasource filter
var fs = grid.dataSource.Filter()
// I then stringify it and pass it over to the server via an ajax call
// server side, I get the full filter string
// now i do this:
DataSourceRequest dsr = new DataSourceRequest();
Question: How do I take that filter string and recreate the full datasource Filters ?
p.s. I have to do it this way - I cannot have a DataSourceRequest in the endpoint parameters passed in.