Hello all,
I have an editor template popup and on it I have two dropdownlist controls on it. On another popup I have the validations show up as yellow messages on the popup form. On this one these show a "Message from web page" alert box and "Errors:" showing the error messages. How do I make this show similar to the other textboxes for example where it shows it hovering over the control the yellow validation messages?
<div class="editor-label">
@Html.LabelFor(model => model.UserName)
</div>
<div class="editor-field">
@(Html.Kendo().DropDownList()
.Name("UserName")
.DataValueField("UserName")
.DataTextField("UserName")
.OptionLabel("--Select Value--")
.BindTo((System.Collections.IEnumerable)ViewData["ADUserList"])
)
@Html.ValidationMessageFor(model => model.UserName)
</div>
I have an editor template popup and on it I have two dropdownlist controls on it. On another popup I have the validations show up as yellow messages on the popup form. On this one these show a "Message from web page" alert box and "Errors:" showing the error messages. How do I make this show similar to the other textboxes for example where it shows it hovering over the control the yellow validation messages?
<div class="editor-label">
@Html.LabelFor(model => model.UserName)
</div>
<div class="editor-field">
@(Html.Kendo().DropDownList()
.Name("UserName")
.DataValueField("UserName")
.DataTextField("UserName")
.OptionLabel("--Select Value--")
.BindTo((System.Collections.IEnumerable)ViewData["ADUserList"])
)
@Html.ValidationMessageFor(model => model.UserName)
</div>