PivotGridSortSettingsBuilder
Methods
Enabled(System.Boolean)
Enables or disables sorting.
Parameters
value - System.Boolean
Example
@( Html.Kendo().PivotGrid()
.Name("PivotGrid")
.Sortable(sorting => sorting.Enabled((bool)ViewData["enableSorting"]))
)
AllowUnsort(System.Boolean)
Enables or disables unsorted mode.
Parameters
value - System.Boolean
The value.
Example
@( Html.Kendo().PivotGrid()
.Name("PivotGrid")
.Sortable(sorting => sorting.AllowUnsort(true))
)