overDeveloper
Programmer
I have a custom validator that calls a function:
now this works, as in it does not submit the form and it shows the error message, but I also get a javascript error on the args.IsValid=false; soemthing to the effect of the object does not support that method... that's issue 1....
secondly, how can I get the error message to disappear on a custom validator once the control is valis (like it does on a required field val)??
Thanks!
Code:
function val_con1 () {
if (document.all.formname.conname.value == "") {
args.IsValid=false;
return;
}
secondly, how can I get the error message to disappear on a custom validator once the control is valis (like it does on a required field val)??
Thanks!