Skip to main content
All docs
V25.1
  • ITreeList.FilterTreeMode Property

    Specifies how the TreeList component displays filtered nodes.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(TreeListFilterTreeMode.Auto)]
    [Parameter]
    TreeListFilterTreeMode FilterTreeMode { get; set; }

    Property Value

    Type Default Description
    TreeListFilterTreeMode Auto

    An enumeration value.

    Available values:

    Name Description
    Auto

    This option is identical to Nodes if the TreeList is bound to the GridDevExtremeDataSource; otherwise, the Auto option is identical to ParentBranch.

    ParentBranch

    The TreeList component displays a node that meets the filter criteria and all its parent nodes, even if they do not meet the criteria.

    EntireBranch

    The TreeList component displays a node that meets the filter criteria and all its parent and child nodes, even if they do not meet the criteria.

    Nodes

    The component ignores parent-child relationships and displays all nodes that meet the filter criteria at one level.

    Remarks

    Refer to the FilterTreeMode property description for more information and an example.

    See Also