Hi
MVC 5.1 has a simple and elegant solution for Enum's and DropDownList
@Html.EnumDropDownListFor(model => model.MyProp )
This populates the list, it works with the [Range] DataAnnotation, and also works if the model value is NULL. More importantly it selects the item in the list based on the Model value out-of-the-box.
Trying to do this with Kendo is a lot more involved and messy right?
So can we please have a Kendo.EnumDropDownListFor please to match?
Thank you :-)