Skip to main content

PivotGridWebOptionsCustomization.FilterPopupWindowResizeMode Property

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

Namespace: DevExpress.Web.ASPxPivotGrid

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

NuGet Package: DevExpress.Web

#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:

Library Object Type Path to FilterPopupWindowResizeMode
ASP.NET MVC Extensions PivotGridSettings
.OptionsCustomization .FilterPopupWindowResizeMode
ASP.NET Web Forms Controls ASPxPivotGrid
.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