Skip to main content
A newer version of this page is available. .

DataViewBase.ColumnFilterPopupMode Property

Gets or sets the display mode of the filter dropdown for all columns within the view. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v19.1.Core.dll

Declaration

public ColumnFilterPopupMode ColumnFilterPopupMode { get; set; }

Property Value

Type Description
ColumnFilterPopupMode

A ColumnFilterPopupMode enumeration value.

Available values:

Name Description
Default

Filter dropdowns of date-time columns are represented by the calendar, filter dropdowns of all other columns are represented by regular lists.

Excel

Displays an Excel-style Drop-down Filter (previous).

ExcelSmart

Displays an Excel-style Drop-down Filter (new; works starting with v18.2).

Remarks

By default, filter dropdowns of date-time columns are represented by the calendar, filter dropdowns of all other columns are represented by regular lists.

Set the ColumnFilterPopupMode property to FilterPopupMode.ExcelSmart to show the Excel-style Drop-down Filter for all columns within the view.

Note

The column’s ColumnBase.FilterPopupMode property has higher precedence than the ColumnFilterPopupMode property.

See Also