Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MVC 4 client side validation not working

Can anyone tell me why client side validation is not working in my MVC 4 application.

_layout.schtml

@Scripts.Render("~/bundles/jquery") @RenderSection("scripts", required: false) 

In my web.config I have:

<appSettings>    <add key="ClientValidationEnabled" value="true" />    <add key="UnobtrusiveJavaScriptEnabled" value="true" /> </appSettings> 

In my login.cshtml page I have:

@using (Html.BeginForm()) {     <div class="formscontent">          <ol>             <li>                 @Html.LabelFor(x => x.AgreementNumber)                 <br />                 @Html.TextBoxFor(x => x.AgreementNumber, new { size = "30" })                 <br />                 @Html.ValidationMessageFor(m => m.AgreementNumber)                 <br />                 <br />             </li>             <li>                 @Html.LabelFor(x => x.UserName)                 <br />                 @Html.TextBoxFor(x => x.UserName, new { size = "30" })                 <br />                 @Html.ValidationMessageFor(m => m.UserName)                 <br />                 <br />             </li>             <li>                 @Html.LabelFor(x => x.Password)                 <br />                 @Html.PasswordFor(x => x.Password, new { size = "30" })                 <br />                 @Html.ValidationMessageFor(m => m.Password)                 <br />                 <br />             </li>         </ol>      </div>          <ol>         <li>             @Html.CheckBoxFor(m => m.RememberMe)             @Html.LabelFor(m => m.RememberMe, new { @class = "checkbox" })         </li>     </ol>          <br />          <input class="mainbutton" type="submit" value="@Model.Localisation.TranslateHtmlString("LogonBtn")" /><br />     <div style="text-align: left; padding: 0 5px 5px 10px;">         Forgot login-info? clik <a class="link" href="@Url.Action("Index", "Credentials")">here.</a>     </div>      } 

In the bottom of login page:

@section Scripts {   @Scripts.Render("~/bundles/jqueryval") } 

JavaScript is enabled in my browser. In the MVC 4 template project from Visual Studio client validation works fine.

Running the application, on login page when viewing page source, I see this rendered:

<label for="AgreementNumber">number</label> <br /> <input id="AgreementNumber" name="AgreementNumber" size="30" type="text" value="387893" /> <br /> <span class="field-validation-valid" data-valmsg-for="AgreementNumber" data-valmsg-  replace="true"></span> 

and in this in the bottom:

<script src="/BMWebsite/Scripts/jquery.unobtrusive-ajax.js"></script> <script src="/BMWebsite/Scripts/jquery.validate.inline.js"></script> <script src="/BMWebsite/Scripts/jquery.validate.js"></script> <script src="/BMWebsite/Scripts/jquery.validate.unobtrusive.js"></script> 

My model properties are annotated:

public class LogonModel : ModelBase {     [MyRequired("AgreementNumberRequiredProperty")]     [MyDisplay("AgreementNumberLabel")]     public string AgreementNumber { get; set; }      [MyRequired("UserNameRequiredProperty")]     [MyDisplay("UserNameLabel")]     public string UserName { get; set; }      [MyRequired("PasswordRequiredProperty")]     [DataType(DataType.Password)]     [MyDisplay("PasswordLabel")]     public string Password { get; set; }      [MyDisplay("RememberMeCheckBox")]     public bool RememberMe { get; set; } } 

MyRequired is a class derived from the regular RequiredAttribute. The reason is that my error messages are localised by overriding the FormatErrorMessage(string name) method of the RequiredAttribute class. And it works fine - My labels and error messages are localized.

MyRequired.cs

public class MyRequiredAttribute : RequiredAttribute {     private readonly string _errorMessagekey;      public MyRequiredAttribute(string errorMessage)     {         _errorMessagekey = errorMessage;     }      public override string FormatErrorMessage(string name)     {         var translation = HttpContext.Current.Session["translation"] as LocalisationHelper;          return translation != null ? translation.Translate(_errorMessagekey) : ErrorMessage;     } } 

I put a breakpoint in the POST version of my login action method, and it is being hit. The form is posted to server where server side validation happens. Client side validation doesn't happen.

What am I missing?

Thank you.

like image 324
Javid Avatar asked Jan 25 '13 10:01

Javid


2 Answers

I had the same problem. It seems that the unobtrusive validation scripts were not loaded (see screenshot at the end). I fixed it by adding at the end of _Layout.cshtml

 @Scripts.Render("~/bundles/jqueryval") 

The end result:

   @Scripts.Render("~/bundles/jquery")    @Scripts.Render("~/bundles/jqueryval")    @RenderSection("scripts", required: false) 

Except for my pretty standard CRUD views everything is Visual studio project template defaults.

Loaded scripts after fixing the problem: enter image description here

like image 113
Liviu Mandras Avatar answered Oct 31 '22 04:10

Liviu Mandras


Be sure to add this command at the end of every view where you want the validations to be active.

@section Scripts {     @Scripts.Render("~/bundles/jqueryval") } 
like image 33
Lara85 Avatar answered Oct 31 '22 02:10

Lara85