fires when a TreeView item has been double clicked
id | string|number | id of the node that was double clicked |
boolean | true - confirms opening/closing |
myTreeView.attachEvent("onDblClick", function(id){
// your code here
return true;
});
The event is blockable. Returning "false" will prevent the default action.
added in version 5.1
Back to top