Hello all,
I am looking for the css class that I can use to override the "v" icon that is shown to the right of a Kendo DropDownList. If I can't replace the icon itself, I'll settle for changing the color of it.
For what it's worth, here's my dropdownlist:
var facilityList = Html.Kendo().DropDownList()
.Name("facilityList")
.HtmlAttributes(new { style = "width: 200px;" })
.Items(items =>
{
foreach (var item in Model.Facilities.Values)
{
items.Add().Text(item.Name).Value(item.Id.ToString());
}
});