New to Kendo UI for Angular? Start a free 30-day trial
ColumnSortSettings
Defines the settings for sorting a TreeList column. Use this type to configure sorting options such as allowing unsort and setting the initial direction.
html
<kendo-treelist ...>
<kendo-treelist-column field="ProductName" [sortable]="{ allowUnsort: true, initialDirection: 'asc'}">
</kendo-treelist-column>
</kendo-treelist>
type
ColumnSortSettings = boolean
| { allowUnsort?: boolean; initialDirection?: "asc" | "desc"; };