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.ToolbarButtons Property

Gets or sets which buttons should be displayed in filter popup toolbars.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.XtraPivotGrid.v24.2.dll

NuGet Package: DevExpress.Win.PivotGrid

#Declaration

[DefaultValue(FilterPopupToolbarButtons.ShowOnlyAvailableItems | FilterPopupToolbarButtons.RadioMode | FilterPopupToolbarButtons.InvertFilter)]
[XtraSerializableProperty]
public FilterPopupToolbarButtons ToolbarButtons { get; set; }

#Property Value

Type Default Description
FilterPopupToolbarButtons ShowOnlyAvailableItems | RadioMode | InvertFilter

A set of FilterPopupToolbarButtons flags that identify buttons displayed in filter popup toolbars.

Available values:

Name Description
None

No toolbar buttons are displayed.

ShowOnlyAvailableItems

Toolbar_ShowOnlyAvailableItems

The Show Only Available Items button that controls the visibility of filter items that cannot be displayed because of filtering applied to other fields.

Corresponding property: PivotGridOptionsFilterBase.ShowOnlyAvailableItems.

Note that this option is not available for Group Filters.

ShowNewValues

Toolbar_FilterType

The Show New Field Values button controls the visibility of field values that have appeared in the datasource after the field’s filtering was configured.

Corresponding properties: PivotGridFieldBase.ShowNewValues, PivotGridGroup.ShowNewValues.

IncrementalSearch

Toolbar_IncrementalSearch

The Incremental Search button that controls whether the incremental searching feature is enabled or not. This feature allows end-users to locate an item in the drop-down by typing the item’s initial characters.

Corresponding property: PivotGridOptionsFilterPopup.AllowIncrementalSearch.

MultiSelection

Toolbar_MultiSelection

The Multi-Selection button that controls whether end-users are allowed to select only a single item or multiple items.

Corresponding property: PivotGridOptionsFilterPopup.AllowMultiSelect.

RadioMode

Toolbar_RadioMode

The Radio Mode button that controls whether end-users are allowed to check only a single item or multiple items.

Corresponding properties: PivotGridOptionsFilterPopup.IsRadioMode, PivotGridFieldOptionsEx.IsFilterRadioMode.

InvertFilter

Toolbar_InvertFilter

The Invert Filter button that inverts the checked state for all filter items.

All

All toolbar buttons.

#Property Paths

You can access this nested property as listed below:

Object Type Path to ToolbarButtons
PivotGridControl
.OptionsFilterPopup .ToolbarButtons

#Remarks

VisualElements_FilterDropdown_Toolbar

To specify whether to show filter popup toolbars or not, use the PivotGridOptionsFilterPopup.ShowToolbar property.

To learn more, see Filter Button and Popup.

See Also