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

PivotGridFieldOptionsEx.FieldFilterPopupMode Property

Gets or sets the field’s filter popup mode.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v18.2.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(FieldFilterPopupMode.Default)]
public virtual FieldFilterPopupMode FieldFilterPopupMode { get; set; }

Property Value

Type Default Description
FieldFilterPopupMode **Default**

A FieldFilterPopupMode value that specifies the field’s filter popup mode. Default value is interpreted as FieldFilterPopupMode.Excel.

Available values:

Name Description
Default

A default filter popup type.

Excel

An Excel-style filter popup.

WinPivot_Filtering_Excel

Classic

A Classic filter popup.

WinPivot_Filtering_Classic

Property Paths

You can access this nested property as listed below:

Object Type Path to FieldFilterPopupMode
PivotGridField
.Options.FieldFilterPopupMode

Remarks

The Pivot Grid supports two types of filter popups: Excel-style and Classic. To learn more, see Filtering Overview.

To specify the filter popup type globally, for all controls in your application, use static option WindowsFormsSettings.ColumnFilterPopupMode. It has priority over other filter popup type settings.

To specify the filter popup type for all PivotControl’s fields, use the PivotGridOptionsFilterPopup.FieldFilterPopupMode property. The code below shows how to use Excel-style filter popups for all fields:


pivotGridControl.OptionsFilterPopup.FieldFilterPopupMode = FieldFilterPopupMode.Excel;

To specify the filter popup type for a specific field, use FieldFilterPopupMode.


fieldTrademark.Options.FieldFilterPopupMode = FieldFilterPopupMode.Excel;

Default value (FieldFilterPopupMode.Default) is interpreted as FieldFilterPopupMode.Excel. It means that if the field meets the following criteria:

the popup filter is invoked in Excel mode.

See Also