blazor-devexpress-dot-blazor-dot-itreelist-66722fce.md
Specifies how the TreeList component displays filtered nodes.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(TreeListFilterTreeMode.Auto)]
[Parameter]
TreeListFilterTreeMode FilterTreeMode { get; set; }
| 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.
|
Refer to the FilterTreeMode property description for additional information and an example.
See Also