TreeListCustomButtonCallbackEventArgs.NodeKey Property
In This Article
Specifies the node key to which the clicked button belongs.
Namespace: DevExpress.Web.ASPxTreeList
Assembly: DevExpress.Web.ASPxTreeList.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Description |
---|---|
String | The node key. |
#Remarks
<ASPxTreeList ID="ASPxTreeList1" onCustomButtonCallback="ASPxTreeList1_CustomButtonCallback">
...
</ASPxTreeList>
protected void ASPxTreeList1_CustomButtonCallback(object sender, TreeListCustomButtonCallbackEventArgs e) {
if (e.NodeKey == "clicked_node_key"){
// your code
}
}
See Also