I am new to angular-tree-widget.js. We need to implement double click event once we click on any tree child node. All I found only two events are supported.
$scope.$on('selection-changed', function (e, node) {
//node - selected node in tree
$scope.selectedNode = node;
});
$scope.$on('expanded-state-changed', function (e, node) {
// node - the node on which the expanded state changed
// to see the current state check the expanded property
//console.log(node.expanded);
$scope.exapndedNode = node;
});
How do I add double click event on a node here? Please help me. Thanks in advance.