This question is locked. New answers and comments are not allowed.
I have a grid control which uses custom server binding. In addition, I set the filter initially as indicated in your demonstration code below:
<%= Html.Telerik().Grid(Model) .Name("Grid") .Filterable(filtering => filtering.Filters(filters => { filters.Add(o => o.ContactName).StartsWith("Paul").And().EndsWith("Wilson"); }))%>When the page loads the filters are set on the grid control but the data isn't filtered. If I click on the column with the filter icon, I can see the filters and I can then click the Filter button which applies the filter, but it doesn't do it automatically when the page loads. Is there a way to apply an initial filter on custom server bound grids?
Thanks.
Andrew