Posted 14 Nov 2011 Link to this post
<style type=
"text/css"
>
.RadComboBoxDropDown .rcbList
{
background-color
:Red ! important;
}
</style>
Posted 15 Nov 2011 Link to this post
function
Add()
var
combo = $find(
"<%= RadComboBox1.ClientID %>"
);
Item =
new
Telerik.Web.UI.RadComboBoxItem();
Item.set_text(
"Mario"
combo.trackChanges();
combo.get_items().add(Item);
Item.select();
combo.commitChanges();