Sorting
By default, the sorting functionality of the Telerik UI Grid for ASP.NET MVC is disabled.
Getting Started
To control the sorting in the Grid, use the Sortable
option.
@(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.OrderViewModel>()
.Name("Grid")
.Sortable()
...
Sort Modes
The Grid supports single and multiple columns sort modes which can be set through its SortMode
property. You can also specify if the columns can be unsorted by setting the AllowUnsort
property to true
or false
. For a runnable example, refer to the demo on sorting in the Grid.
With multi-column sorting you can also configure the Grid to display the sort indexes in the header by setting the ShowIndexes
property to true
.
.Sortable(sortable => sortable
.AllowUnsort(true)
.SortMode(GridSortMode.MultipleColumn)
.ShowIndexes(true))