ASPxComboBox.SelectedItem Property
Specifies the selected item in the editor list.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v22.2.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Description |
---|---|
ListEditItem | The selected item. |
Remarks
Use the SelectedItem
property to get or set the selected item within the ASPxComboBox editor. Use the SelectedIndexChanged event to handle the item selection.
<dx:ASPxComboBox ID="ASPxComboBox1" runat="server">
<Items>
<dx:ListEditItem Text="Afghanistan" Value="1" />
<!-- ... -->
</Items>
</dx:ASPxComboBox>
protected void Page_Load(object sender, EventArgs e){
ASPxComboBox1.SelectedItem = ASPxComboBox1.Items.FindByText("Andorra");
}
See Also