Hello Telerik,
I have a problem when dealing with RadComboBox.
if the comboBox is disabled, and I want to select an item it doesn't work
the following not working:
ComboBoxTitle.disable(); ComboBoxTitle.findItemByValue("2").select();the problem is the combo may be disable or not before selecting item so I make the following workaround
if (!ComboBoxTitle.get_enabled()) { ComboBoxTitle.enable(); ComboBoxTitle.findItemByValue(ContactData.TitleId).select(); ComboBoxTitle.disable(); } else { ComboBoxTitle.findItemByValue(ContactData.TitleId).select(); }thanks,
Taraman