I have a form that, when submitted, shows a busy animation and disables the submit button.
Anyone know how to query Microsoft's Sys.Mvc.FormValidation
to see if the form passed its test so I can prevent the busy animation showing if the form hasn't actually been submitted? Is there some other work-around?
At present my client side JavaScript looks like this:
$('form').submit(function() {
$('input[type=submit]', this).attr('disabled', 'disabled');
ShowBusy();
});
Cheers, Gavin
I gave up in the end and plugged in the JQuery validation library instead using the Microsoft ASP.NET MVC 2 RC and the MicrosoftMvcJQueryValidation.js library file from the "futures" project to automatically wire up everything for me.
This article explains the process: http://haacked.com/archive/2009/11/19/aspnetmvc2-custom-validation.aspx
So with JQuery validation in effect all I needed to do was make a call to valid()...
$('form').submit(function() {
if ($('form').valid()) {
$('input[type=submit]', this).attr('disabled', 'disabled');
ShowBusy();
}
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With