I have placed a RadComboBox on my page as following:
<radCb:RadComboBox ID="RadComboBox2" runat="server"
SkinsPath="~/RadControls/ComboBox/Skins" Width="150px">
</radCb:RadComboBox>
I have to populate some items (e.g. 2 countries) into this using javascript:
function populateMyRadComboBox(comboBox)
{
...
// what I want is:
// comboBox.Items.Clear();
// comboBox.Items.Add('UK');
// comboBox.Items.Add('US');
}
How can I do this using JavaScript?
Any help?