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

PivotGridOptionsCustomization.AllowFilterInCustomizationForm Property

Gets or sets whether filtering can be applied to fields via the Customization Form.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v19.1.Core.dll

Declaration

[DefaultValue(false)]
[XtraSerializableProperty]
public bool AllowFilterInCustomizationForm { get; set; }

Property Value

Type Default Description
Boolean **false**

true if filtering can be applied to fields via the Customization Form; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AllowFilterInCustomizationForm
WinForms Controls PivotGridControl
.OptionsCustomization.AllowFilterInCustomizationForm
Reporting XRPivotGrid
.OptionsCustomization.AllowFilterInCustomizationForm
ASP.NET Web Forms Controls ASPxPivotGrid
.OptionsCustomization.AllowFilterInCustomizationForm
MVCxPivotGrid
.OptionsCustomization.AllowFilterInCustomizationForm
PivotGridSettings
.OptionsCustomization.AllowFilterInCustomizationForm

Remarks

If the AllowFilterInCustomizationForm property is set to false, the filter button is not displayed within field headers in the Customization Form.

Use the PivotGridOptionsCustomization.AllowSortInCustomizationForm property to specify whether the sort order of field values can be toggled in the Customization Form.

To specify whether to allow end-users to change sorting and filtering in the Header Areas, use the PivotGridOptionsCustomization.AllowSort and PivotGridOptionsCustomization.AllowFilter properties, respectively.

Note

Field values cannot be sorted in the Customization Form if the Deferred Updates option is enabled (the PivotGridOptionsCustomization.DeferredUpdates property is set to true).

The following image illustrates how to apply filtering to a field via the Customization Form.

pivotgrid_FilterInCustomizationForm

See Also