DHTMLX Tree possesses an advanced drag-n-drop functionality. With this feature, it is possible to reorder items in a tree and drag items between trees. To enable drag-n-drop, you should define the drag mode.
const source = new dhx.Tree("tree-source",{dragMode:"source", dropBehaviour:"complex"});
const target = new dhx.Tree("tree-target",{dragMode:"target", dropBehaviour:"complex"});
Drag modeâ
There are three modes of drag-n-drop available in a tree:
By setting the drag mode, you automatically enable the drag-n-drop functionality.
const tree = new dhx.Tree("tree_container", {
dragMode:"source"
});
Related sample: Tree. Drag modes
note
Please note that drag-n-drop within a tree works, if it has dragMode:"both" setting in its configuration object.
Drop behaviourâYou can specify the drag-n-drop behaviour of tree items with the dropBehaviour in the configuration object of a tree.
There are three modes of behaviour of a dragged tree item:
Instead of moving a dragged item to a new position in the same or a different tree, you can copy it. Use the dragCopy option in the configuration object of a tree.
const treeSource = new dhx.Tree("tree-source", {dragMode: "source", dragCopy: true});
const treeTarget = new dhx.Tree("tree-target", {dragMode: "target", dragCopy: true});
Related sample: Tree. Copy dragged item
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4