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

GridEditFormPopupSettings.AllowResize Property

Gets or sets a value that specifies whether end users can resize the popup edit form.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool AllowResize { get; set; }

Property Value

Type Default Description
Boolean **false**

true, if end users can resize the popup edit form; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to AllowResize
ASP.NET Controls and MVC Extensions ASPxCardViewPopupControlSettings
.EditForm .AllowResize
ASPxGridViewPopupControlSettings
.EditForm .AllowResize
TreeListPopupControlSettings
.EditForm .AllowResize
ASP.NET Bootstrap Controls BootstrapCardViewPopupControlSettings
.EditForm .AllowResize
BootstrapGridViewPopupControlSettings
.EditForm .AllowResize
ASP.NET MVC Extensions MVCxGridViewPopupControlSettings
.EditForm .AllowResize
MVCxTreeList
.SettingsPopupEditForm .AllowResize
MVCxTreeListPopupControlSettings
.EditForm .AllowResize

Remarks

Set the AllowResize property to true to allow end users to resize the popup edit form.

The GridEditFormPopupSettings.ResizingMode property determines the popup edit form’s resize mode. You can specify the element size constraints, limiting the resizing capability of end-users by the GridEditFormPopupSettings.MinHeight and GridEditFormPopupSettings.MinWidth properties.

Initial element sizes can be specified by the GridEditFormPopupSettings.Height and GridEditFormPopupSettings.Width properties.

Note

Adaptive mode does not support resizing.

Example

<dx:ASPxGridView ID="ASPxGridView1" ... >
      ...
      <SettingsEditing Mode="PopupEditForm" />
      <SettingsPopup>
          <EditForm AllowResize="True" />
      </SettingsPopup>
  </dx:ASPxGridView>
See Also