DxAccordion.FilterString Property
Specifies the filter criteria used to filter the component’s items.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.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>
See Also