Skip to main content
All docs
V25.1
  • DxAccordion.FilterString Property

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

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(null)]
    [Parameter]
    public string FilterString { get; set; }

    Property Value

    Type Default Description
    String null

    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