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

ASPxClientControl.AdjustControl Method

Modifies the control’s size against the control’s container.

Declaration

AdjustControl(): void

Remarks

The AdjustControl method recalculates the size of the control’s client object to correctly display it, when the control’s parent container becomes visible dynamically, on the client side.

This method can be used when the visibility and layout of the control’s container, which was initially hidden, is dynamically changed on the client side (for instance, a container DIV element’s DISPLAY attribute changes from NONE to an empty string), and it’s required to recalculate the control’s size.

Note

The AdjustControl method is in effect only for some visible controls whose content size needs to be recalculated depending upon their container’s size (for instance, the ASPxPageControl or the ASPxGridView).

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 ASPxPopupControl.ScrollBars property to "Auto". This option will allow the popup control to evaluate the content width and height.2. Handle the ASPxClientPopupControl.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