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

ASPxClientButton.LostFocus Event

Fires on the client side when the button loses input focus.

Declaration

LostFocus: ASPxClientEvent<ASPxClientEventHandler<ASPxClientButton>>

Event Data

The LostFocus event's data class is ASPxClientEventArgs.

Remarks

A button’s LostFocus event occurs on the client side before focus is moved from the button to another control within the same page. This event can be handled to perform specific client actions when the button loses focus.

Note

Do not attempt to set focus from within the LostFocus event handler. Doing so can cause your application to stop responding.

See Also