Version

NodeClick Property (DataTreeClientEvents)

This event is fired, after a click on a tree node occur.
Syntax
'Declaration
 
Public Property NodeClick As String
public string NodeClick {get; set;}
Remarks

If event is canceled, then that disables possible autopostback and navigation to NavigateUrl of clicked node.

Example
WebDataTree1.ClientEvents.NodeClick = "WebDataTree_NodeClick"
WebDataTree1.ClientEvents.NodeClick = "WebDataTree_NodeClick";
// The client event 'NodeClick' takes two parameters sender and e
// sender  is the object which is raising the event
// e is the DataTreeNodeEventArgs
function WebDataTree_NodeClick(sender, e) {

    //Gets the node object that is clicked
    var node = e.getNode();

    //Gets the text of the node
    var nodeText = node.get_text();

    alert("Node '" + nodeText + "' is clicked!");
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also