Ok so a real simple DropdownFor MVC 4 Razor VS 2012.
<div class="editor-field">
<h3>Married</h3>
@(Html.Kendo().DropDownListFor(model => model.MaritalStatus)
.Name("MaritalStatus")
.BindTo(new List<string>() {
"Married",
"Single",
"Divorced",
"Separated",
"Committed Partnership"
}))
</div>
Only the word Married is displayed because it seems the inline style is defaulting to display, inline:none
See attached for the screen shots.
Any thoughts?
Pat NH USA
Anybody else notice working with JavaScript is a lot like Fortran 4 with punch cards only not as easy to debug?
<div class="editor-field">
<h3>Married</h3>
@(Html.Kendo().DropDownListFor(model => model.MaritalStatus)
.Name("MaritalStatus")
.BindTo(new List<string>() {
"Married",
"Single",
"Divorced",
"Separated",
"Committed Partnership"
}))
</div>
Only the word Married is displayed because it seems the inline style is defaulting to display, inline:none
See attached for the screen shots.
Any thoughts?
Pat NH USA
Anybody else notice working with JavaScript is a lot like Fortran 4 with punch cards only not as easy to debug?