I am using the latest internal build (Kendo UI Complete v2013.2.814) of KendoUI and have noticed if I return empty lists to a dropdown the OptionLabel is no longer rendering correctly.
Example Usage:
Example Usage:
@(Html.Kendo().DropDownListFor(model => model.EmploymentId)
.OptionLabel("* Not Selected")
.DataTextField("Name")
.DataValueField("Id")
.BindTo(Model.Employments)
.Events(e => e.Select("EmploymentSelected")))