Hello all,
I'm evaluationg the controls for my application and I'm currently stuck in something really stupid. I'm using the Kendo Textbox helper and added the required attribute like this:
@(Html.Kendo().TextBox() .Name("LastName01") .HtmlAttributes(new { placeholder = "Apellido Paterno", required = "required", validationmessage = "Enter {0}", @class = "col-sm-2 form-control" }) )<span data-for='LastName01' class='k-invalid-msg'></span>
But the position of the valition message is off, how can I get it under the textbox? Attached is the screen shot.