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

GridHeaderFilterPopupSettings.ResizingMode Property

Gets or sets a value that specifies when the header filter being resized should be redrawn.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
ResizingMode **Live**

One of the ResizingMode enumeration values.

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 ResizingMode
ASP.NET Controls and MVC Extensions ASPxCardViewPopupControlSettings
.HeaderFilter .ResizingMode
ASPxGridViewPopupControlSettings
.HeaderFilter .ResizingMode
TreeListPopupControlSettings
.HeaderFilter .ResizingMode
ASPxVerticalGridPopupControlSettings
.HeaderFilter .ResizingMode
ASP.NET Bootstrap Controls BootstrapCardViewPopupControlSettings
.HeaderFilter .ResizingMode
BootstrapGridViewPopupControlSettings
.HeaderFilter .ResizingMode
ASP.NET MVC Extensions MVCxGridViewPopupControlSettings
.HeaderFilter .ResizingMode
MVCxTreeListPopupControlSettings
.HeaderFilter .ResizingMode

Remarks

The ResizingMode property controls whether the header filter popup window is redrawn dynamically during the resizing operation (the Live value), or the window is redrawn after the resizing operation is complete (the Postponed value).

See Also