Skip to main content
All docs
V24.1

IDropDownListEditorBase<TData, TValue>.SearchFilterCondition Property

Specifies the search and filter condition.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(ListSearchFilterCondition.Default)]
ListSearchFilterCondition SearchFilterCondition { get; set; }

Property Value

Type Default Description
ListSearchFilterCondition Default

A ListSearchFilterCondition enumeration value.

Available values:

Name Description
Default

The Contains condition is used. Filters the component for items that contain the search string. Search string matches are highlighted.

StartsWith

Filters the component for items that begin with the search string.

Contains

Filters the component for items that contain the search string. Search string matches are highlighted.

Equals

Searches for items whose value matches the search string.

Remarks

Refer to the SearchFilterCondition property description for more information and an example.

See Also