New to Telerik UI for ASP.NET MVC? Download free 30-day trial

TreeViewDragAndDropBuilder

Methods

Enabled(System.Boolean)

Enable/disable rendering of checkboxes in the treeview.

Parameters

enabled - System.Boolean

Whether checkboxes should be rendered.

Example


             @( Html.Kendo().TreeView()
                        .Name("TreeView")
                        .DragAndDrop(config => config
                            .Enabled(true)
                        )
            )

ClickMoveClick(System.Boolean)

Disables (false) or enables (true) the click move click interaction as an alternative of dragging. The alternative is disabled by default.

Parameters

enabled - System.Boolean

Disables (false) or enables (true) the click move click interaction.

Example


             @( Html.Kendo().TreeView()
                        .Name("TreeView")
                        .DragAndDrop(config => config
                            .Name("checkedNodes")
                        )
            )

In this article
Not finding the help you need?