I have a form in a partial view with a required field. I try to submit the form and get a validation error which is the expected behaviour. Now I fill out the required field and submit the form and my controllerAction replaces the partial view.
Now I empty the required field again and try to submit again - and the form is submitted. I get validation error tough but my page is sending a POST-Request.
What's happenig here?
EDIT
Zruty gave the correct answer, I updated my ajaxSetup:
$j.ajaxSetup({
statusCode: {
200: function (data, textStatus, jqXHR) {
$.validator.unobtrusive.parse(document);
}
}
});