This question is locked. New answers and comments are not allowed.
Hi guys, we've been trying to get a basic search working on the grid, but with no luck. The example I tried to follow was:
http://demos.telerik.com/aspnet-mvc/razor/grid/filtering
Which contains the code:
Now after fishing around I found out the Html.Configurator class isn't actually included and supposedly isn't needed either. So how do you do this then?
http://demos.telerik.com/aspnet-mvc/razor/grid/filtering
Which contains the code:
@using (Html.Configurator("Filter by ...") .PostTo("Filtering", "Grid") .Begin()) { <p> <label for="startsWith"><strong>Contact Name</strong> starts with:</label> @Html.TextBox("startsWith", "Paul") </p> <button class="t-button t-state-default" type="submit">Apply</button> }Now after fishing around I found out the Html.Configurator class isn't actually included and supposedly isn't needed either. So how do you do this then?