So I've been blocking the page with a "Loading" message using the following code for a logon page

<input id="submit" type="submit" value="Log On" onclick="block();"/>

If there's an error with the validation though, the block message will stay there forever. What's the best way to present the block message so it takes the validation into account?

link|improve this question

58% accept rate
Could you post some code. Ex. the code the validation produces? :) – Marco Johannesen Oct 14 '11 at 6:21
I'm using ASP.NET MVC so all I have to type is @Html.ValidationMessageFor(Function(m) m.Password) and it validates based on the model – Tom Oct 14 '11 at 6:25
As i remember it validates on a pagereload. So how can you fire the validation before the block(); command? Could u paste the code for the block(); command too :-) – Marco Johannesen Oct 14 '11 at 6:27
feedback

1 Answer

If the validation is being triggered automatically and stopping the form from posting, I would simply move the block(); call to the forms onsubmit attribute:

<form onsubmit="block();">

This way, it will only trigger when the form submits, rather than when the user clicks the button when the form may be invalid.

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.