On the client side, I found that there is the equivalent of a Ruchi offer:
cbxJobType.SelectedItem = cbxJobType.Items.FindByValue ("Value # 2");
What is:
cbxJobType.SetSelectedItem(cbxJobType.FindItemByValue("Value #2")); // or cbxJobType.SetSelectedItem(cbxJobType.FindItemByText("Text #2"));
Go here to learn more about ASPxComboBox on the client side (ASPxClientComboBox).
Go here to learn more about server side ASPxComboBox.
Here you can view all your members, constructors, events, and methods.
TheWanderingMind
source share