Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PivotGridOptionsFilterPopup.FieldFilterPopupMode Property

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

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#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