I have a MVC grid and it seems that if I pick a column to sort it actually sorts the column to the right.
Below is my razor code. Not sure why this is happening.
Thanks,
Matthew
@(Html.Kendo().Grid(Model).Columns(columns =>{ columns.Bound("").Locked(true).Filterable(true).Sortable(false).ClientTemplate("imagePath;").Width(75).Title("").Groupable(false);; columns.Bound(c => c.Code).Title("Code");columns.Bound(c => c.ShortName).Title("ShortName");columns.Bound(c => c.Name).Title("Name");columns.Bound("").ClientTemplate("#=Description#, #=Comment#).Title("Desc");columns.Bound("").Locked(true).HtmlAttributes(new { @class = "k-group-cell" }).Width(60).Title("").Filterable(false).Sortable(false).Groupable(false).ClientTemplate();}).Groupable().Filterable().Selectable(selectable => selectable.Mode(GridSelectionMode.Single).Type(GridSelectionType.Cell)).Sortable(sortable => sortable .SortMode(GridSortMode.MultipleColumn)).Pageable(pageable => pageable.Refresh(true).PageSizes(true).ButtonCount(5)).DataSource(dataSource =>dataSource .Ajax() .Sort(sort => sort.Add("Code").Ascending()) .PageSize(50) .ServerOperation(false)))