Skip to main content

ASPxClientControlCollection.BrowserWindowResized Event

Occurs when the browser window is being resized.

Declaration

BrowserWindowResized: ASPxClientEvent<ASPxClientEventHandler<ASPxClientControlCollection>>

Event Data

The BrowserWindowResized event's data class is ASPxClientEventArgs.

Remarks

The BrowserWindowResized event occurs when the browser window is being resized. You can use this event handler to correct the size and position of controls.

ASPxClientControl.GetControlCollection().BrowserWindowResized.AddHandler(function () {
     PopupControl.UpdatePosition();
});
See Also