Skip to main content
All docs
V25.1
  • IDropDownListEditorBase<TData, TValue>.SearchTextParseMode Property

    Specifies how the editor treats search words.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(ListSearchTextParseMode.Default)]
    ListSearchTextParseMode SearchTextParseMode { get; set; }

    Property Value

    Type Default Description
    ListSearchTextParseMode Default

    The text parse mode.

    Available values:

    Name Description
    Default

    The GroupWordsByAnd is used by default. The search words are grouped as individual conditions by the AND logical operator. Only records that match all the conditions are shown.

    GroupWordsByAnd

    The search words are grouped as individual conditions by the AND logical operator. Only records that match all the conditions are shown.

    GroupWordsByOr

    The search words are treated as individual conditions grouped by the OR logical operator. Records that match at least one of these conditions are shown.

    ExactMatch

    The search words are not treated separately. Only records that match the search text exactly are shown.

    Remarks

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

    See Also