Does anyone know how to disable an ASP.NET validator using JavaScript? I'm using javascript style.display = 'none' to disable parts of a web page. However these disabled parts have asp.net validators that are still firing and I need to disable then without doing a round trip to the server. Thanks.

link|improve this question

74% accept rate
feedback

3 Answers

up vote 19 down vote accepted

Use this snippet:

function doSomething()
{
  var myVal = document.getElementById('myValidatorClientID');
  ValidatorEnable(myVal, false); 
}
link|improve this answer
Heads-up: this will not work for ASP.NET 1.1 with Firefox stackoverflow.com/questions/3640183/… – IrishChieftain Sep 7 '10 at 21:37
3  
Another gotcha is that the validator is still enabled server-side, which may give you a surprise next postback. – JumpingJezza Jun 7 '11 at 8:55
This triggers client-side validation. In the snippet, instead of ValidatorEnable, use: myVal.enabled = false; to disable the validator – GlennG Apr 11 at 15:27
feedback

Here is detailed article on how to control ASP.NET Validators from JavaScript:

How to control ASP.NET Validator Controls Client Side validation from JavaScript

link|improve this answer
feedback

Additionally, rather than simply hiding elements you could set the Visible property to false...

whateverItem.Visible = false;

This makes that item simply not render to the page, which I believe disables the validation. Someone please correct me if I am wrong.

link|improve this answer
2  
You are correct that it does not render to the page, but that requires a postback whereas Javascript does not. – Mike C. Jul 1 '09 at 19:54
feedback

Your Answer

 
or
required, but never shown

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