blazor-devexpress-dot-blazor-dot-dxaccordion-85ffc82e.md
Specifies whether the Accordion displays the filter panel.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(false)]
[Parameter]
public bool ShowFilterPanel { get; set; }
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to display the filter panel; otherwise, false.
|
Enable the ShowFilterPanel option to activate the filter panel. If a user types in a search string, the component displays matching items and their parent and child items. Note that if you activate the filter option with the enabled LoadChildItemsOnDemand option, the component loads all its items into memory.
<DxAccordion ShowFilterPanel="true">
@* ... *@
</DxAccordion>
You can also use the FilterString property to specify the filter criteria in code.
In addition to default filter logic, you can specify the CustomFilter property to enable heuristic algorithms.
Run Demo: Accordion - Data Binding
See Also