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

ASPxClientDropDownEditBase.QueryCloseUp Event

Occurs on the client side before the drop down window is closed and allows you to cancel the operation.

Declaration

QueryCloseUp: ASPxClientEvent<ASPxClientCancelEventHandler<ASPxClientDropDownEditBase>>

Event Data

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

Property Description
cancel Gets or sets a value indicating whether the action which raised the event should be canceled.

Remarks

Each time a drop down window is going to be closed on the client side, the QueryCloseUp event occurs. You can cancel closing the window by setting the ASPxClientCancelEventArgs.cancel property to true.

See Also