I used to make my ajax calls like this:

        form.bind("submit", function(e) {
            e.preventDefault();
            form.ajaxSpin("large");
            form.ajaxSubmit({
                success: function(result) {
                    if (!b.ajaxFailure(result, true)) {
                        if(b.validateForm(form,result)) {
                            console.log(result); // TODO: something?
                        }
                    }
                },
                complete: function() {
                    form.ajaxSpin(false);
                }
            });
        });

so far my design is progressively enhancing.
and now I want to implement model validation on the client-side too, before making an actual request.

I included the jquery.validation.js plugin to the project, along with the latest jquery.validation.unobtrusive.js script.

Then I changed my code to:

        form.validate({
            submitHandler: function() {
                form.ajaxSpin("large");
                form.ajaxSubmit({
                    success: function(result) {
                        if (!b.ajaxFailure(result, true)) {
                            if (b.validateForm(form, result)) {
                                console.log(result); // TODO: something?
                            }
                        }
                    },
                    complete: function() {
                        form.ajaxSpin(false);
                    }
                });
            }
        });

which, I figured, would be exactly the same except it wouldn't make requests unless validation got through first.

the validation aspect works perfectly, entirely as expected, using the data attributes mvc sets from the model into my view's DOM.

the part where this fails and I can't figure out why, is that I'm back to not being ajax. the page just reloads, my submitHandler never fires (contrary to what this link suggests)

I tried a few other common names for the submitHandler (onSuccess, success, etc) but none of them seem to be working.

link|improve this question

1  
Some good info here: stackoverflow.com/questions/5127813/… – Paul Feb 21 at 23:44
yay! thanks a lot, that was what I was looking for. – Nico Feb 21 at 23:46
No problem, good luck with your app! – Paul Feb 21 at 23:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.