Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxComboBoxSettings.FilteringMode Property

OBSOLETE

This property is now obsolete. Use SearchMode and SearchFilterCondition properties instead.

This property is now obsolete. Use SearchMode and SearchFilterCondition properties instead.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Browsable(false)]
[DefaultValue(DataGridFilteringMode.None)]
[Obsolete("This property is now obsolete. Use SearchMode and SearchFilterCondition properties instead.")]
[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 and highlights matches.

See Also