This question is locked. New answers and comments are not allowed.
Hi there,
I've implemented this code below:
.Filterable(filtering => filtering.Filters(filters => filters.Add(o => o.FirstName.Contains((String)ViewData["firstName"]))))
I've also put the code below in the controller:ViewData["firstName"] = firstName ?? String.Empty;
But the filtering does not happen.
I even diplayed the ViewData["firstName"] on the page to see whether the value is being passed correctly when the page post back and the values does diplay correctly.
Am I missing something?