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

ASPxClientDropDownEditBase.AdjustDropDownWindow Method

Modifies the size of the drop down window in accordance with its content.

Declaration

AdjustDropDownWindow(): void

Remarks

The AdjustDropDownWindow method can be useful if the drop down window‘s content was changed on the client side, and the drop down window’s size should be recalculated.

Example

This part of the Extended Lookup online demo illustrates how to use the ASPxDropDownEdit’s AdjustDropDownWindow client method.

function EndCallbackHandler(s, e) {
    DropDownEdit.AdjustDropDownWindow();
    ...
}
See Also