how to sort a Kendo grid using HTML helpers?
问题 I have implemented a Kendo grid using Html helpers. Everything works but the sorting, when I click the sorting arrows, it thinks and refreshes the same data. <div id="SearchResults"> @{ var grid = Html.Kendo().Grid<SearchCOESGridViewModel>(); grid.Name("COESResultGrid") .Columns(columns => { columns.Bound(s => s.COESNo).Title(@SearchCOES.COESGridHeading); columns.Bound(s => s.Postcode).Title(@SearchCOES.PostcodeGridHeading); columns.Bound(s => s.AuditAuthNo).Title(@SearchCOES