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

PivotGridWebOptionsCustomization.FilterPopupWindowResizeMode Property

Gets or sets how a filter popup window visually responds to resizing operations.

Namespace: DevExpress.Web.ASPxPivotGrid

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

Declaration

[DefaultValue(ResizingMode.Live)]
public ResizingMode FilterPopupWindowResizeMode { get; set; }

Property Value

Type Default Description
ResizingMode **Live**

A ResizingMode enumeration member that specifies how a filter popup window visually responds to resizing operations.

Available values:

Name Description
Postponed

An element is redrawn after the resizing operation is finished.

Live

An element is redrawn dynamically during the resizing operation.

Property Paths

You can access this nested property as listed below:

Object Type Path to FilterPopupWindowResizeMode
ASPxPivotGrid
.OptionsCustomization.FilterPopupWindowResizeMode
MVCxPivotGrid
.OptionsCustomization.FilterPopupWindowResizeMode
PivotGridSettings
.OptionsCustomization.FilterPopupWindowResizeMode

Remarks

The FilterPopupWindowResizeMode property allows you to specify whether a filter popup window is redrawn dynamically during the resizing operation (the ResizingMode.Live value), or the window is redrawn after the resizing operation is finished (the ResizingMode.Postponed value).

See Also