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

ASPxListEdit.SelectedIndexChanged Event

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.2.dll

Declaration

public event EventHandler SelectedIndexChanged

Event Data

The SelectedIndexChanged event's data class is EventArgs.

Remarks

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

Note

The SelectedIndexChanged event’s generation depends upon the settings of the ASPxEdit.AutoPostBack property and the ASPxClientProcessingModeEventArgs.processOnServer property passed to the corresponding client ASPxClientListEdit.SelectedIndexChanged event, if it is handled. refer to the descriptions of these properties for more information.

See Also