\Kendo\UI\TreeListEditableMove

A PHP class representing the move setting of TreeListEditable.

Methods

clickMoveClick

If set to true (default), when there is a drag column for the items in the TreeList, the user will be allowed to reorder rows via click move click interaction as an alternative of the drag and drop one.

Returns

\Kendo\UI\TreeListEditableMove

Parameters

$value boolean

Example

<?php
$move = new \Kendo\UI\TreeListEditableMove();
$move->clickMoveClick(true);
?>

reorderable

Enables reordering of rows via a drag-and-drop UI.

Returns

\Kendo\UI\TreeListEditableMove

Parameters

$value boolean

Example

<?php
$move = new \Kendo\UI\TreeListEditableMove();
$move->reorderable(true);
?>
In this article
Not finding the help you need?