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.v18.2.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 filter dropdown.

ExcelSmart

This drop-down filter is similar to the Excel drop-down filter and offers the following advantages:

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.Excel to show the Excel style filter dropdown for all columns within the view.

Note

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

See Also