Skip to main content
All docs
V25.1
  • 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.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [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