Insertion & Visual indicator

Hi,

When using dhtmlx tree demo, we can drag&drop a node into another.
Is it possible to insert a node ? If yes, can we have a visual indicator in order the user can see where he will drop the node ?

Some demos will be helpful :
ztree.me/v3/demo.php#_301 shows an arrow to see where it will be dropped

Even better here wwwendt.de/tech/dynatree/doc/samples.html , choose Drag’n’drop in the left menu and test the demo, it show an arrow and a line, very precise and useful indicator.

Hi
If i understood you right, you can d’n’d nodes as child or as sibling.
Look here at this clear demo:
dhtmlx.com/docs/products/dht … bling.html
If you need to insert some one bew node, use the next methods:
insertNewChild() - creates new node as a child to specified with parentId
insertNewNext() - creates new node next to specified

Perfect answer, thanks you.

You are welcome!