DxTreeView.NodeExpandCollapseAction Property
Specifies user actions that expand or collapse a node.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
[DefaultValue(TreeViewNodeExpandCollapseAction.Auto)]
[Parameter]
public TreeViewNodeExpandCollapseAction NodeExpandCollapseAction { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Tree |
Auto | A Tree |
Available values:
Name | Description |
---|---|
Auto | When node selection is disabled, users can click a node or its Expand/Collapse button to expand/collapse the node. |
Node |
Users can click a node or its Expand/Collapse button to expand/collapse the node. |
Node |
Users can double click a node or click the node’s Expand/Collapse button to expand/collapse the node. |
Button |
Users can click a node’s Expand/Collapse button to expand/collapse the node. |
#Remarks
To expand/collapse a TreeView node, users should click the node or its Expand/Collapse button. If node selection is enabled, users should double-click nodes or click the Expand/Collapse buttons.
Use the NodeExpandCollapseAction
property to change these user actions. For instance, the following example expands/collapses nodes when users click the Expand/Collapse buttons:
<DxTreeView NodeExpandCollapseAction="TreeViewNodeExpandCollapseAction.ButtonClick" ...>
@* ... *@
</DxTreeView>