Skip to main content

ASPxClientCheckBoxList.SelectedIndexChanged Event

Occurs on the client side after a different item in the check box list has been selected (focus has been moved from one item to another).

Declaration

SelectedIndexChanged: ASPxClientEvent<ASPxClientListEditItemSelectedChangedEventHandler<ASPxClientCheckBoxList>>

Event Data

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

Property Description
index Gets the index of the item related to the event.
isSelected Gets whether the item has been selected.
processOnServer Specifies whether or not to process the event on the server. Inherited from ASPxClientProcessingModeEventArgs.

Remarks

The SelectedIndexChanged event occurs on the client side whenever selection is moved between items within the check box list. Write a handler for the SelectedIndexChanged event to perform tasks in response to an end-user selecting a different item from the editor.

See Also