Skip to main content

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

IGrid.SearchTextParseMode Property

Specifies how the grid treats search words.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(GridSearchTextParseMode.GroupWordsByAnd)]
GridSearchTextParseMode SearchTextParseMode { get; set; }

#Property Value

Type Default Description
GridSearchTextParseMode GroupWordsByAnd

The text parse mode.

Available values:

Name Description Image
GroupWordsByAnd

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

Search Box: And Mode

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.

Search Box: Or Mode

ExactMatch

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

Search Box: Exact Mode

#Remarks

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

See Also