Hi all,
I'm facing a strange behaviour. I have a RadComboBox, it is populated on server side, like this:
I'm facing a strange behaviour. I have a RadComboBox, it is populated on server side, like this:
RadComboBox1.Items.Add(new Telerik.Web.UI.RadComboBoxItem("Value 1 - 1", "1"));
RadComboBox1.Items.Add(new Telerik.Web.UI.RadComboBoxItem("Value 1 - 2", "1"));
RadComboBox1.Items.Add(new Telerik.Web.UI.RadComboBoxItem("Value 1 - 3 ", "1"));
RadComboBox1.Items.Add(new Telerik.Web.UI.RadComboBoxItem("Value 2", "2"));
As can be see, three items have the same value (1). The problem is, in the client side, I select a item, for exemple, "Value 1 - 3", so, when the combobox last the focus, the item will be automatic set to "Value 1 - 1".
Why this happen? Is there a way to stop this?
Thanks.