This screen shot says it all:
https://dl.dropboxusercontent.com/u/17474320/Validator-Miss-positioned.png
The code has:
@(Html.Kendo().DropDownList()
.Name("OwnerUserId")
.HtmlAttributes(new { style = "width:200px", @required = true })
.OptionLabel("(Select User)")
.DataTextField("Name")
.DataValueField("Id")
.DataSource(source => {
source.Read(read => {
read.Action("GetCascadeUser", "ComboBox")
.Data("filterUsers");
}).ServerFiltering(true);
})
.Enable(true)
.AutoBind(true)
)
How do I fix that, so the validation is positioned correctly?
https://dl.dropboxusercontent.com/u/17474320/Validator-Miss-positioned.png
The code has:
@(Html.Kendo().DropDownList()
.Name("OwnerUserId")
.HtmlAttributes(new { style = "width:200px", @required = true })
.OptionLabel("(Select User)")
.DataTextField("Name")
.DataValueField("Id")
.DataSource(source => {
source.Read(read => {
read.Action("GetCascadeUser", "ComboBox")
.Data("filterUsers");
}).ServerFiltering(true);
})
.Enable(true)
.AutoBind(true)
)
How do I fix that, so the validation is positioned correctly?