Code:
@( Html.Telerik().ComboBox()
.Name("cmbTest")
.ClientEvents(events => events
.OnOpen("oncmbTestOpen")
)
)
function oncmbTestOpen(e)
{
var index = 2;
// How to give the shade(default orange color) to the list item of particular index(2) in the telerik mvc combo box
}
How to give the shade(default orange color) to the list item of particular index(2) in the telerik mvc combo box when opening the combo box.