fires right after a tree item has been double clicked, but before the default onDblClick functionality has been processed
id | string|number | id of the node that was double clicked |
boolean | true - confirms opening/closing |
myTree.attachEvent("onDblClick", function(id){
// your code here
return true;
});
The event is blockable. Returning "false" will prevent the default action.
Back to top