Skip to main content
Tag

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

ColumnBase.ShowCriteriaInAutoFilterRow Property

Gets or sets whether to display the criteria selector button for a column in the Automatic Filter Row.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public bool? ShowCriteriaInAutoFilterRow { get; set; }

#Property Value

Type Default Description
Nullable<Boolean> false

true, to display the criteria selector button in the Automatic Filter Row; otherwise, false.

#Remarks

If the ShowCriteriaInAutoFilterRow property is set to true, users can specify a criteria type for the column in the Automatic Filter Row. If the ShowCriteriaInAutoFilterRow property is set to false, the filter criterion is BeginsWith.

Automatic Filter Row - Criteria Selector

The GridControl changes the Automatic Filter Row‘s default filter criteria when you display the Filter Criteria Button:

BeginsWith
Applies to string columns and columns with the ColumnBase.ColumnFilterMode property set to DisplayText.
Equals
Applies to other column types (int, double, DateTime, bool, and so on).

FilterCriteriaSelector - Default Filters

Note

The ColumnBase.ShowCriteriaInAutoFilterRow property takes precedence over the TableView.ShowCriteriaInAutoFilterRow / TreeListView.ShowCriteriaInAutoFilterRow property.

See Also