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

ASPxClientButton.CheckedChanged Event

Occurs on the client side when the button’s checked state is changed.

Declaration

CheckedChanged: ASPxClientEvent<ASPxClientProcessingModeEventHandler<ASPxClientButton>>

Event Data

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

Property Description
processOnServer Specifies whether or not to process the event on the server.

Remarks

The ASPxButton controls can function as radio buttons. To create a mutually exclusive set of buttons, use the ASPxButton.GroupName property to specify a group of button controls. Once the ASPxButton.GroupName property has been set, only one ASPxButton in the specified group can be checked at one time.

Write a handler for the CheckedChanged event to perform any custom actions on the client side in response to the button’s checked state being changed.

See Also