vote up 0 vote down star

I have read here that all ASP.NET validators have a property called: isvalid which can be used in the client side. However, I hav tried to access this property in the client side as following but with no luck: alert(document.getElementById("validator_clientID").isvalid);

Do you have any idea why this is not accessible?

Your help is appreciated. Thanks!

flag

50% accept rate
Please post the validator declaration, along with your full JavaScript. Also, clarify what you mean by 'with no luck'. What error do you receive? Displaying the current status of the isvalid attribute using the method you supplied worked for me. I suspect the id you are using (validator_clientID) is incorrect. – Phaedrus Sep 26 at 14:36
I have tried accessing it like that and it works: bool flag = validatorname.isvalid; For some reason, accessing isvalid through the object direct was accessible. But I don't know why getting the element using getElementById didn't retrieve the object. I have tried it event using the validator ID - not the ClientID - and it's still unaccessible. I got undefined value. – mnour Oct 6 at 0:09

1 Answer

vote up 0 vote down

I don't think the isvalid works on a validator control directly as this is a server side validation function. You can fire a validator check for the current page or validation group using the client side javascript function Page_ClientValidate. You can optionally specify a validation group name a parameter. This will return true if all the validation passes.

You can also look at more available client-side functions and how they map to the server side functions on MSDN at:

http://msdn.microsoft.com/en-us/library/yb52a4x0.aspx

link|flag

Your Answer

Get an OpenID
or

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