Have you ever wonder how to trigger de MVC 3 form validations from jQuery? ... well, I've done it, and belive me, I spend more than an hour finding out how to. So, the answer is pretty simple: to trigger the validators do something like
$('#MyForm').validate().form();And for checking if the all the validations get passed look for something like
var isMyFormValid = $('#MyForm').validate().valid();That's all.
(The answer was found thanks to the ASP.NET forums)
No comments:
Post a Comment