MagicDTree is a wrapper of Dynatree which is a JQuery tree plugin. MagicDTree made the Dynatree easier. You'd better learn Dynatree plugin before start use this.

treeConfig

Original Dynatree config.

ctxMenu

element of context menu instead of the "ctxMenu" item of Dynatree config, so we can extend features from this point.

loader

Data provider config.

rootNode

root node element, readony.

doInsert(dt, callback)

It will be executed when user click "insert" item of context menu. It give us a chance to do some thing when user try to add node, such as open a dialog and request user input. It is incorrect that insert node to tree in this event.

doUpdate(dt, callback)

It will be executed when user click "update" item of context menu. It give us a chance to do some thing when user try to update a node, such as open a dialog and request user input.

doDelete(dt, callback)

It will be executed when user click "delete" item of context menu. It give us a chance to do some thing when user try to delete a node, such as open a confirm dialog.

onCtxMenu(el)

It will be executed when context menu popup.

onLoadSubTree(dt)

It will be triggered when after load sub tree of node.

onActive(dt)

It triggered when node be actived.

setContextMenu()

It is core of MagicDTree. No need to call it directly, but you can reset it if you want to custom contextMenu.

addNode(dd)

Add a node to current node as child. Usually no need to call it directly.

updateNode(dd)

Update current node. Usually no need to call it directly.

deleteNode(key)

Delete current node. Usually no need to call it directly.

deleteChildren(dt)

Delete childern of current node.

loadSubTree(dt)

Dynamic load sub tree of node. It will trigger onLoadSubTree events.

getNode(key)

Get node by key.