Skip to main content
All docs
V24.1

ITreeList.FilterTreeMode Property

Specifies how the TreeList component displays filtered nodes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

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

Property Value

Type Default Description
TreeListFilterTreeMode ParentBranch

An enumeration value.

Available values:

Name Description
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.

Remarks

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

See Also