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

ASPxTreeView.CheckNodesRecursive Property

Gets or sets whether recursive checking is enabled.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue(false)]
public bool CheckNodesRecursive { get; set; }

Property Value

Type Default Description
Boolean **false**

true to enable recursive checking; otherwise, false.

Remarks

To allow end-users to employ recursive node checking set the CheckNodesRecursive property to true.

When the CheckNodesRecursive is enabled:

  • checking a parent node automatically checks all its children;
  • a parent node is automatically checked if all its child nodes are checked;
  • even if one child node is unchecked its parent node is automatically unchecked.

You can see the image, demonstrates recursive node checking.

For more information, see the Check Box Support topic.

See Also