I have a registration form on which I use client side validation (Required, StringLength etc. specified on my view model). The form is currently pretty much how the scaffolder creates it:
@using (Html.BeginForm("Index", "Registration"))
{
@Html.ValidationSummary(true)
<fieldset>
<legend>Registration details</legend>
@Html.ValidationSummary(false, "Please correct these errors:")
@Html.ValidationMessageFor(model => model.Username)
<div class="editor-label">
@Html.LabelFor(model => model.Username)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Username)
</div>
<p>
<input type="submit" value="Register" />
</p>
</fieldset>
}
The only difference is that I moved the ValidationMessageFor to the top right beneath the ValidationSummary.
What I would like to do is display the client side validation errors in the validation summary. Currently they are just displayed on top of the form but not using the validation summary. How can I display client side validation errors using the validation summary? Is this even possible?
Update
Darin I have used your code in a new project and this is what it looks like for me when the client side validation kicks in:
Client side validation http://i56.tinypic.com/i3f320.jpg
I expected this to be shown IN the validation summary with the validation summary styles applied. I also submitted the form which then look like this:
After submit http://i55.tinypic.com/2hqcowh.jpg
Thanks,
b3n
I had this same issue. I fixed it by making sure the following scripts were included in my page:
I hope it does the trick for you, too.
i have solved this problem after 2 day of intense research, and finaly, i found the answer by myself and my experimentations !
To display the Client-side Validator message in the validator Summary there is 3 easy step :
1- put
<add key="ClientValidationEnabled" value="false" />
in the<appSettings>
section of your web.config2- add your validation the "false" attribut in your view :
@Html.ValidationSummary(false)
3- Remove all
ValidationMessageFor(x => x.Property)
in your view.when you,ll click in your submit button, the client-side Validation message will be displayed in your validation summary.
Enjoy!
The validation error messages are normally shown as part of the validation summary by default. The ValidationFor should normally go along side the control which causes the validation error in order to make it clear which control needs to be updated
This article seems to explain how add client side validation summary into the validation summary:
http://geekswithblogs.net/stun/archive/2011/01/28/aspnet-mvc-3-client-side-validation-summary-with-jquery-validation-unobtrusive-javascript.aspx
However I did not test it by myself and it does not seem to have any difference with your code. If it does not work a good point to look might be jquery.validate.unobtrusive.js file on a function that actually places validation errors:
From what I can see in your sample code you have two
Html.ValidationSummary
inside the form. The first one takestrue
as argument meaning that it excludes all property errors. The second one takesfalse
and works for both client side and server side validation errors. Example:Model:
Controller:
View:
I resolved the issue in my project.
<add key="ClientValidationEnabled" value="true"/>
Add below code in html page where you want to display validation summary
@Html.ValidationSummary(false)
Remove all @Html.ValidationFor lines from the view.