\Kendo\UI\TreeListSortable

A PHP class representing the sortable setting of TreeList.

Methods

allowUnsort

If set to true, the user can get the TreeList in its unsorted state by clicking the sorted column header.

Returns

\Kendo\UI\TreeListSortable

Parameters

$value boolean

Example

<?php
$sortable = new \Kendo\UI\TreeListSortable();
$sortable->allowUnsort(true);
?>

mode

The sort mode. If set to single, the user can sort by one column at a time. If set to multiple, the user can sort by multiple columns.

Returns

\Kendo\UI\TreeListSortable

Parameters

$value string

Example

<?php
$sortable = new \Kendo\UI\TreeListSortable();
$sortable->mode('value');
?>
In this article
Not finding the help you need?