Back to Devexpress

DxAccordion.FilterString Property

blazor-devexpress-dot-blazor-dot-dxaccordion-c904218d.md

latest1.4 KB
Original Source

DxAccordion.FilterString Property

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

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
Stringnull

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:

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

See Also

DxAccordion Class

DxAccordion Members

DevExpress.Blazor Namespace