Posted 05 Apr 2011 Link to this post
function
accessItem()
{
var
combo = $find(
"<%= RadComboBox1.ClientID %>"
);
item = combo.get_items().getItem(2);
//accessing the item using the index
alert(item.get_text());
}
Posted 06 Apr 2011 Link to this post
onClientSelectedIndexChanged(sender,args)
combo = sender
combo2 = $find(
"<%= RadComboBox2.ClientID %>"
combo2.clearSelection();
combo2.set_selectedIndex(combo.get_selectedIndex());