Skip to main content
A newer version of this page is available. .

DxAccordion.FilterString Property

Specifies the filter criteria used to filter the component’s items.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v22.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string FilterString { get; set; }

Property Value

Type Description
String

The filter criteria.

Remarks

Users can specify the filter criteria in the Filter Panel. Use the FilterString property to specify the filter criteria from code:

<DxAccordion Data="@Data"
             ShowFilterPanel="true"
             FilterString="Cha">
    <DataMappings>
        <DxAccordionDataMapping Text="Name"
                                Key="Id"
                                ParentKey="CategoryId" />
    </DataMappings>
</DxAccordion>

Filter String

See Also