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

ASPxListEdit.SelectedItem Property

Gets or sets the editor’s selected list item.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public ListEditItem SelectedItem { get; set; }

Property Value

Type Description
ListEditItem

A ListEditItem object representing the currently selected list item.

Remarks

Use the SelectedItem property to access the currently selected item within the list editor. If you want to obtain the index of the selected item, use the ASPxListEdit.SelectedIndex property.

Handle the ASPxListEdit.SelectedIndexChanged event to respond to the selection being changed within the list editor.

See Also