dragAndDrop Boolean (default: false)

Disables (false) or enables (true) drag-and-drop of the nodes.

Example

<div id="treeview"></div>
<script>
$("#treeview").kendoTreeView({
  dragAndDrop: true,
  dataSource: [
    { text: "foo" },
    { text: "bar" }
  ]
});
</script>
In this article