Hello,
I started to use dropdownlist Kendo but your documentation is confusing and I cannot find an info that I am looking for.
I created
@(Html.Kendo().DropDownListFor(d => d.AppraisalType)
.Name("optional")
.OptionLabel("Select Appraisal Type")
.HtmlAttributes(new { @class = "form-control", id = "typeAppraisal" })
.BindTo(new List<string>() {
"60 Days Appraisal",
"6 Months Appraisal",
"Yearly Appraisal"
})
When I submit the form it is not in database, saved as null. How I can save it?
And another thing how to set up dropdownlist as required field?
Thank you!