I use ajax to submit a form. I have used correct data annotations to validate the inputs. The validations get triggered on the required fields on tab out and even on key up.

How can I control triggering the validation only when the user tabs out.

Following is the order of the scripts included.

    <script type="text/javascript" src="<%=Url.Content("~/Scripts/MicrosoftAjax.js")%>"></script>
   <script type="text/javascript" src="<%=Url.Content("~/Scripts/MicrosoftMvcValidation.js")%>"></script>
   <script type="text/javascript" src="<%=Url.Content("~/Scripts/MicrosoftMVCAjax.js") %>"></script>
link|improve this question

feedback

1 Answer

Try this:

$(document).ready(function () {
    var validator = $.data($('#YourFormName')[0], 'validator');  
    validator.settings.onkeyup = false;   
});

MVC explicitly sets how validation should be triggered in jquery.validation.unobtrusive.js, but you can modify those settings using jQuery when the page loads.

For a full list of configuration options see here

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.