If you need this feature only in the DropDown list that appears in the Filter Criteria section, simply change the URL by adding the QueryString parameters that you want to filter. DynamicFilter will select values from QueryString and configure DropDown lists accordingly. (fyi. This is the same functionality as ExternalKey.ascx FieldTemplate)
It would be nice if there was a better way to create this URL (instead of using a string), but as of right now any solution that I provide is likely to break in the next version.
example (in page_load)
Response.Redirect("~/Employees/List.aspx?ReportsTo=1234");
source
share