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

TreeListCustomButtonCallbackEventArgs.NodeKey Property

Specifies the node key to which the clicked button belongs.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public string NodeKey { get; }

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