Skip to main content
Tag

ColumnBase.FilterPopupMode Property

Gets or sets the display mode of the column's filter dropdown. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

#Declaration

[XtraSerializableProperty]
public FilterPopupMode FilterPopupMode { get; set; }

#Property Value

Type Description
FilterPopupMode

A FilterPopupMode enumeration value that specifies the display mode of the column's filter dropdown.

#Remarks

The Filter Dropdown can be represented as a regular list of items (one item at a time can be selected) or as a checked list (multiple items can be selected/checked simultaneously). By default, filter dropdowns of all columns are denoted by regular lists. To use a checked filter dropdown list for a column, set the column's FilterPopupMode property to FilterPopupMode.CheckedList.

If you don't want to use built-in filter dropdowns (list or checked list), you can provide your own filter dropdown via templates. In this instance, set the FilterPopupMode property to FilterPopupMode.Custom and assign the template to the ColumnBase.CustomColumnFilterPopupTemplate.

NOTE

DomainDataSource doesn't support filtering via checked filter dropdown list.

To learn more, see Filter Dropdown.

#Examples

See Also