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

TreeViewNode.ClientEnabled Property

Gets or sets a value that indicates whether the node is enabled on the client.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(true)]
public bool ClientEnabled { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the node is enabled; otherwise, false.

Remarks

Use the ClientEnabled property to specify the node’s initial ability to respond to end-user interactions (such as mouse hovering or clicks). A node’s availability state, defined via this property, can be dynamically changed on the client side using the ASPxClientTreeViewNode.SetEnabled method.

Note

The ClientEnabled property is not in effect if the node is disabled on the server side by using the server TreeViewNode.Enabled property.

See Also