I'm trying to figure out how unobtrusive validation works in asp.net mvc 3.
I would like to know what is triggering the validation check when I click to submit the form. How is the script jquery.validate.unobtrusive.js bound to the form submit event ?
I also would like to know how can I manually prevent/trigger this check.
$("#myform").validate()
do not work to trigger unobtrusive validation I've got to call$("#myform").valid()
for the unobtrusive validation to be triggered. Does that sound normal to you ? – Bromidic