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

ASPxPopupControlBase.AllowResize Property

Gets or sets a value that specifies whether the control’s window can be resized by end-users on the client side.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

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

Property Value

Type Default Description
Boolean **false**

true if window resizing is allowed; otherwise, false.

Remarks

The AllowResize property controls the availability of the control’s window resizing feature. This feature is coupled with the ASPxPopupControlBase.ResizingMode and ASPxPopupControlBase.ShowSizeGrip property settings.

Note

  • Adaptive mode does not support resizing.
  • You cannot change the ASPxDockPanel size if it is docked. The workaround scenario: undock the panel (the MakeFloat method), dock it back to the dock zone (the Dock(zone) method).
    var zone = pnl1.GetOwnerZone();
    pnl1.MakeFloat();
    pnl1.Dock(zone);
    

Example

At present, ASPxPopupControl does not have the built-in capability to resize nested controls when it's resizing. This example illustrates how to automatically resize controls places inside the popup.

To accomplish this task, execute the following steps:

  1. Set the ScrollBars property to "Auto". This option will allow the popup control to evaluate the content width and height.

  2. Handle the AfterResizing event. In this event handler, call the AdjustControl method for a desired control to force it to reevaluate its size.

  3. Place the control into the <div style="height: 100%; width: 100%; overflow: hidden"> element. This element is necessary to overcome scrollbars that can be shown when ScrollBars="Auto" is set.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page 
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
}
See Also