Skip to main content

ASPxTreeList.EditingNodeKey Property

Gets the key value of the node currently being edited.

Namespace: DevExpress.Web.ASPxTreeList

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

NuGet Package: DevExpress.Web

Declaration

public string EditingNodeKey { get; }

Property Value

Type Description
String

A string value that identifies the node currently being edited.

Remarks

Use the EditingNodeKey property to identify the node currently being edited via the ASPxTreeList.FindNodeByKeyValue method. This can be useful when the focused node feature is disabled (the TreeListSettingsBehavior.AllowFocusedNode property is set to false). Otherwise, if the focused node is enabled, you can also use the ASPxTreeList.FocusedNode property.

The EditingNodeKey property returns null (Nothing in Visual Basic) in the cases listed below:

  • the ASPxTreeList is in browse mode (no node is being edited);
  • a new node is being edited.
See Also