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 |
---|---|---|
Field |
Default | A Field |
Available values:
Name | Description |
---|---|
Default | A default filter popup type. |
Excel | An Excel-style filter popup. |
Classic | A Classic filter popup. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Field |
---|---|
Pivot |
|
#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:
To specify the filter popup type for a specific field, use PivotGridFieldOptionsEx.FieldFilterPopupMode.