Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ITreeList.FilterTreeMode Property

Specifies how the TreeList component displays filtered nodes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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