Skip to main content

PivotFieldDisplayTextEventArgs.IsPopulatingFilterDropdown Property

Gets whether this event is raised to populate the filter dropdown.

Namespace: DevExpress.Web.ASPxPivotGrid

Assembly: DevExpress.Web.ASPxPivotGrid.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool IsPopulatingFilterDropdown { get; }

Property Value

Type Description
Boolean

true if the event is raised to populate the filter dropdown; false if the event is raised to customize the display text of column and row headers.

Remarks

Handle the ASPxPivotGrid.FieldValueDisplayText event in the instances listed below:

  • to customize the display text of column and row headers. The event is raised in turn for each visible header. In this instance, the IsPopulatingFilterDropdown property is set to false;
  • to customize the display text of items that are displayed within the field’s Filter Window. The event is raised for each filter item when a filter dropdown is invoked. In this instance, the IsPopulatingFilterDropdown property is set to true.
See Also