This question is locked. New answers and comments are not allowed.
Telerik Version: 2010.2.825.235
Using the below source I get a scripting error when I remove the option for Sortable from the view and click on the filter icon. Error message:Invalid argument. Can you tell me if this is a known bug?
Html.Telerik().Grid(Model.ScheduleInspectionList) .Name("Grid") .Columns(columns => { columns.Template(o => { %> <input name="checkedRecords" type="checkbox" value="<%= o.PermitID %>" /> <% }).Width(50); columns.Bound(o => o.Address).Width(200); columns.Bound(o => o.Category); columns.Bound(o => o.InspectionType); columns.Bound(o => o.Net); columns.Bound(o => o.Inspector); columns.Bound(o => o.ScheduleDate).Format("{0:MM/dd/yyyy}").Width(120); columns.Bound(o => o.Status); }) .Filterable() .Pageable() .Sortable().Scrollable() .Render(); %>