Skip to main content
A newer version of this page is available. .
Tab

ASPxTreeView.NodeClick Event

Fires after a node has been clicked.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

public event TreeViewNodeEventHandler NodeClick

Event Data

The NodeClick event's data class is TreeViewNodeEventArgs. The following properties provide information specific to this event:

Property Description
Node Gets a node object related to the event.

Remarks

Write a NodeClick event handler to perform specific actions on the server side each time a node is clicked within the ASPxTreeView control. Note that this event fires immediately after the left mouse button is released. If the button is released when the mouse pointer is not over a node, the event doesn’t fire. You can use the event parameter’s property to identify the clicked node.

See Also