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

PivotGridOptionsFilterPopup.FieldFilterPopupMode Property

Gets or sets the field’s filter popup mode for all fields.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v18.2.dll

Declaration

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

Property Value

Type Default Description
FieldFilterPopupMode **Default**

A FieldFilterPopupMode value that specifies the field’s filter popup mode for all fields. 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
PivotGridControl
.OptionsFilterPopup.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 PivotGridFieldOptionsEx.FieldFilterPopupMode.


fieldTrademark.Options.FieldFilterPopupMode = FieldFilterPopupMode.Excel;
See Also