ASPxClientPopupControlBase.Closing Event
Enables you to cancel window closing on the client side.
Declaration
Closing: ASPxClientEvent<ASPxClientPopupWindowCancelEventHandler<ASPxClientPopupControlBase>>
Event Data
The Closing event's data class is ASPxClientPopupWindowCancelEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
cancel | Specifies whether to cancel the related action (for example, row edit, export). Inherited from ASPxClientCancelEventArgs. |
closeReason | Gets the value that identifies the reason the popup window is about to close. |
window | Gets the popup window object related to the event. |
Remarks
The Closing event occurs on the client side when a control’s window is going to be closed. Write a Closing event handler to perform specific actions on the client side and cancel window closing, if necessary.
See Also