Skip to main content
All docs
V25.1
  • DxTreeView.CheckAllVisible Property

    Specifies whether the Check All box is visible.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

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

    Property Value

    Type Default Description
    Boolean false

    true to display the CheckBox; otherwise, 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:

    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>
    

    Check All in UI

    Use the CheckAllText property to specify custom text for the editor.

    See Also