コード:
@( 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
}
コンボ ボックスを開くときに、telek mvc コンボ ボックスの特定のインデックス (2)のリスト項目に陰影 (デフォルトのオレンジ色) を与える方法。