I have the following view in ASP.net MVC 3:

@model Models.CreateProjectViewModel

<script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.min.js")"></script>
<script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")"></script>

@using( Html.BeginForm() ) {
    @Html.TextBoxFor(m => m.ProjectName)
    @Html.ValidationMessageFor(m => m.ProjectName)

    <p>
        <input type="submit" value="Save" />
    </p>
}

I am using unobtrusive javascript with jQuery and the Fluent Validation framework.

When I click the Save button and validation fails, is there some event I can hook into to call some custom javascript?

function validationFailed() {
    // do something here only if validation failed
}

How would I tie into the validation so that when it failed (and only if it failed) I could call my validationFailed() function.

link|improve this question

What exactly are you trying to do? I know you want to run some javascript if it fails, but what are trying to achieve by doing that? – Mystere Man Oct 8 '11 at 20:07
feedback

2 Answers

up vote 2 down vote accepted

You can use the invalidHandler I believe that is in jquery validation.

invalidHandler Callback
Callback for custom code when an invalid form is submitted. Called with a event object as the first argument, and the validator as the second.

http://docs.jquery.com/Plugins/Validation/validate#options

link|improve this answer
If I am using Data Annotations or Fluent Validation, will this interfere with me creating a validate handler in my view? – Dismissile Oct 4 '11 at 17:57
This will just be a callback that is fired when the form that is submitted is invalid. All the validation you create via data annotations, etc.. will work as normal. – Kyle Rogers Oct 4 '11 at 18:01
This isn't working. When I add validate() to my form it just gets ignored. I think there is a conflict between my validate handler that data annotations is creating and the one I am trying to add manually. – Dismissile Oct 5 '11 at 15:51
You will need to either ask another question or show more information. – Kyle Rogers Oct 5 '11 at 17:23
Figured out the problem. I had a script conflict that was preventing it from working. Two places were trying to register the validation script. – Dismissile Oct 11 '11 at 16:19
feedback

As jQuery/Validation docs says, you could use invalidHandler to react when an invalid form is submitted.

But since MVC unobtrusive validation instantiates the Validation itself, you have to hook this event later.

Using exactly the same mechanism as the jQuery/Validation does: you could bind your code to the form elements custom event 'invalid-form.validate', witch corresponds to the invalidHandler!

$(document).ready(function() {
    $('#myform').bind('invalid-form.validate',function(){
        alert('invalid form!');
    });
});

to give your form an id use:

@using (Html.BeginForm(null, null, FormMethod.Post, new { id = "myform" })) {
} 

Update:

An alternative way to get the existing validation object is calling validate() on the form. If a validator for this form was already created, it will be returned:

$(document).ready(function() {
    var existingValdiation = $("#myform").validate();
    //the settings property corresponds to the options parameter
    existingValdiation.settings.invalidHandler = function (form) {
        alert('invalid form!');
    };
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.