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

DxComboBox<TData, TValue>.FilteringMode Property

Specifies how the ComboBox component’s data is filtered.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(DataGridFilteringMode.None)]
[Parameter]
public DataGridFilteringMode FilteringMode { get; set; }

Property Value

Type Default Description
DataGridFilteringMode **None**

A DataGridFilteringMode enumeration value.

Available values:

Name Description
None

The filter is not applied to list items.

StartsWith

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

Contains

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

Remarks

Note

When you enable filter mode for a multi-column ComboBox, the filter only takes into account data of the columns that are used in the editor’s format pattern.

ComboBox Filter

<DxComboBox FilteringMode="DataGridFilteringMode.Contains" 
            Data="@Data"
            @bind-Value="@Value">
</DxComboBox>

Run Demo: ComboBox - Incremental Filtering

See Also