DxTreeView.CheckAllVisible Property
Specifies whether the Check All box is visible.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(false)]
[Parameter]
public bool CheckAllVisible { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
You can check all TreeView nodes as follows:
- Call the CheckAll() method
- Check the
Check All
box in the UI
Call the ClearCheck() method to uncheck all nodes.
Note
The following actions change the check state of all nodes, even those that do not meet the applied filter criteria:
- CheckAll() method call
- ClearCheck() method call
- Recursive check mode update
The following code snippet displays the Check All editor:
<DxTreeView Data="@Data"
CheckMode="TreeViewCheckMode.Multiple"
CheckAllVisible="true">
<DataMappings>
<DxTreeViewDataMapping Text="Name"
Key="Id"
ParentKey="CategoryId" />
</DataMappings>
</DxTreeView>
Use the CheckAllText property to specify custom text for the editor.
See Also