Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just want to add some client side (JQuery Javascript) validation in a web user control. I put an OnClientClick handler and the function gets called. BUT, even if I return "false", the OnClick method always get fired. What am I doing wrong ?

I'm with VS 2010, targeting the 4.0 framework with JQuery 1.4.2. and JQuery UI 1.8.4.

Here's a sample code :

<td style="text-align:right"><asp:Button ID="btnAddSave" OnClientClick="return ValidateMail();" OnClick="btnAddSave_Click" runat="server" Text="Submit" /></td>

Script method :

function ValidateMail() {
alert("Bouton clicked");
return false;

}

If I put a breakpoint in the Page_Load event, I see that I get in and the btnAddSave_Click event is also executed.

share|improve this question
Have you tried without the alert box? I've read another post like this recently – GôTô Oct 8 '10 at 20:12
I tested this with ASP.NET 4 and get the expected behavior. – Forgotten Semicolon Oct 8 '10 at 20:32
1  
Check for javascript errors that stop it from return false – Aristos Oct 8 '10 at 20:43

5 Answers

up vote 2 down vote accepted

Do you have a click event handler (registered via jquery) which returns true? In that case, the return value of OnClientClick is ignored.

Have a look at my question (and answer): Why doesn't returning false from OnClientClick cancel the postback

share|improve this answer

for some reason, although I didn't have any jquery event handlers attached, it didn't work.

What actually worked was:

OnClientClick="if (validate_form() == false) return(false);"
share|improve this answer
thanks a lot.. saved my day! Even I had such problem! – Kumar Ravi Feb 1 at 12:55

Try changing it to

OnClientClick="ValidateMail(); return false;" 
share|improve this answer
Thanks for the answer, it works - but this makes no sense! 3 Months prior I had fixed this very same issue with Firefox (before their last release) and it worked with "return ValidateMail();". – Dane Balia Sep 6 '12 at 7:51

When you view the rendered source of the HTML page, is your "onclick" event rendered in the tag or are you overwriting that in the code behind? Also, do you have any other JQuery events that bind to this control which might be intercepting the call?

share|improve this answer
Thanks for your answer ! – ultraman69 Jul 27 '11 at 15:02

Great answers. I do it this way. Same result- the OnClick event is not fired off if false is returned from Java function.

OnClientClick = "if (!ValidateDelete()) return false;"
OnClick="btnDeleteSupplier_Click"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.