I Am passing my parameters like this.
<form action="/directory/filename.rpt?init=java" Method="POST">
<input type="text" name="prompt0">
<input type="text" name="prompt1">
<input type="submit" value="view">
</form>...
I have a form that is in a pop-up window. The form submit's itself back to the main window. When I try to do validation on the form in the pop-up window I get an error sayin that my form elements are "null or not an object". If I create a simple page doing the same thing, I get no...
You might try making sure you have values for each button and checking THAT in you validation.
eg.
<input type=radio name=phoneType value=mobile>
Then checking by
document.formName.phoneType.value == "mobile" && ...
Hope this helps.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.