Callback for mouse right click node.
If you set 'setting.callback.beforeRightClick',and return false, zTree will not trigger the 'onRightClick' callback.
If you set 'setting.callback.onRightClick', zTree will shield the browser context menu when mouse right click on zTree.
Default: null
event Object
zTree unique identifier: treeId.
JSON data object of the node which is mouse right clicked
If the DOM which mouse right clicked isn't a node, it will return null.
function myOnRightClick(event, treeId, treeNode) {
alert(treeNode ? treeNode.tId + ", " + treeNode.name : "isRoot");
};
var setting = {
callback: {
onRightClick: myOnRightClick
}
};
......