Can you include the "HtmlAttributes" option in the "SelectListItemBuilder" class?
For example:
@(Html.Kendo().DropDownList()
.Name("color")
.Items(items =>
{
items.Add().Text("First Item").Value("1").HtmlAttributes(new { ... });
items.Add().Text("Second Item").Value("2");
})
)