PivotGridOptionsFilterPopup.FieldFilterPopupMode Property
Gets or sets the field’s filter popup mode for all fields.
Namespace: DevExpress.XtraPivotGrid
Assembly: DevExpress.XtraPivotGrid.v24.1.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. |
Classic | A Classic filter popup. |
Property Paths
You can access this nested property as listed below:
Object Type | Path to FieldFilterPopupMode |
---|---|
PivotGridControl |
|
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.