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>