It can't be so difficult....can you please help me and tell me what i am doing wrong??
i am want to "SEE" the selected value of a combox , here is a very simple sample code
all i want is when page loads the combobox to display "Three", the value is selected when i open the dropdown but when it is collapsed i see nothing...
i am want to "SEE" the selected value of a combox , here is a very simple sample code
protected void Page_Load(object sender, EventArgs e) { |
RadComboBox1.Items.Add(new RadComboBoxItem("One", "1")); |
RadComboBox1.Items.Add(new RadComboBoxItem("Two", "2")); |
RadComboBox1.Items.Add(new RadComboBoxItem("Three", "3")); |
RadComboBox1.Items.Add(new RadComboBoxItem("Four", "4")); |
RadComboBox1.SelectedValue = "3"; |
} |
all i want is when page loads the combobox to display "Three", the value is selected when i open the dropdown but when it is collapsed i see nothing...