ASPxTreeView.NodeClick Event
Fires after a node has been clicked.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
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