Skip to main content

ASPxClientPopupControlBase.CloseUp Event

Occurs on the client side when a control’s window closes or hides.

Declaration

CloseUp: ASPxClientEvent<ASPxClientPopupWindowCloseUpEventHandler<ASPxClientPopupControlBase>>

Event Data

The CloseUp event's data class is ASPxClientPopupWindowCloseUpEventArgs. The following properties provide information specific to this event:

Property Description
closeReason Gets the value that identifies the reason the popup window closes.
window Gets the popup window object related to the event. Inherited from ASPxClientPopupWindowEventArgs.

Remarks

Write a CloseUp event handler to perform specific actions on the client side when a control’s window closes. The CloseUp event also fires when you hide a window programmatically, for example, by calling the ASPxClientPopupControlBase.Hide method.

The CloseUp event provides an argument of the ASPxClientPopupWindowEventArgs type. The event argument’s ASPxClientPopupWindowEventArgs.window property allows you to access the popup window which is being closed.

See Also