Back to Devexpress

Check Box Support

aspnet-8577-components-site-navigation-and-layout-tree-view-concepts-check-box-support.md

latest4.6 KB
Original Source

Check Box Support

  • Jun 16, 2022
  • 3 minutes to read

ASPxTreeView allows end-users to check nodes. To enable this feature, set the ASPxTreeView.AllowCheckNodes property to true. You can disable the check box for a particular node by setting its TreeViewNode.AllowCheck property to false.

A node has two parameters that describe its check state:

Note

The CheckState property is read only. It changes automatically dependent on the node and node’s child nodes Checked property values. This behavior is by design, because an indeterminate node state means that the node has checked and unchecked children. If setting this state manually was allowed, it could break the check box logic.

The correspondence table of Checked and CheckState property values is presented below.

AppearanceCheckedCheckStateConditions (provided the CheckNodesRecursive is set to true)
trueCheckedThe node has been checked or all its child nodes have been checked
falseUncheckedThe node has been unchecked or all its child nodes have been unchecked
falseIndeterminateThe node has checked and unchecked child nodes

Style Settings

ASPxTreeView allows you to change the appearance of all check boxes using the TreeViewStyles.NodeCheckBox property. The appearance of a particular check box can be customized via a node’s TreeViewNode.CheckBoxStyle property. To customize an appearance of a focused check box use TreeViewStyles.NodeCheckBoxFocused property.

Server API

You can check/uncheck a node programmatically via the TreeViewNode.Checked property. When a node’s Checked property value changes, the ASPxTreeView.CheckedChanged event occurs, allowing you to respond to this action. To obtain a node’s check state, use the TreeViewNode.CheckState property.

Client-Side API

On the client, you can handle the ASPxClientTreeView.CheckedChanged event to respond to a change of a node’s Checked property value. To obtain and set a node’s Checked property value, use the ASPxClientTreeViewNode.GetChecked and ASPxClientTreeViewNode.SetChecked methods respectively. To obtain a node’s check state, use the ASPxClientTreeViewNode.GetCheckState method.

Recursive Checking

You can allow end-users to employ recursive node checking. When the ASPxTreeView.CheckNodesRecursive property is set to true:

  • checking a parent node automatically checks all its children;
  • a parent node is automatically checked if all its child nodes are checked;
  • a parent node’s check state is automatically set to indeterminate if it has checked and unchecked child nodes.

Take a look at this image to see how recursive node checking works.

Member Table

Member Table: Check Box Support

See Also

Tree View Elements