RE: javascript multiple submit

2001-06-13 Thread Abraham Kang
e sure the form name is correct. --Abraham > -Original Message- > From: Kiet Nguyen [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, June 13, 2001 7:29 AM > To: Struts-User (E-mail) > Subject: javascript multiple submit > > > I'm trying to use javascript to sub

RE: javascript multiple submit

2001-06-13 Thread Kiet Nguyen
lfors [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 13, 2001 7:49 AM To: [EMAIL PROTECTED] Subject: Re: javascript multiple submit Looks like javascript does not know the name of your form. I have not used the html:form tag before, but from looking at the code, it does not look like having the

Re: javascript multiple submit

2001-06-13 Thread Peter Alfors
Looks like javascript does not know the name of your form. I have not used the html:form tag before, but from looking at the code, it does not look like having the form named in your xml document is going to set the form name. The html:form tag takes an attribute 'name' that you could set: or

RE: javascript multiple submit

2001-06-13 Thread Reynir Hübner
to submit a form with Javascript you have to use some thing like : form.submit(); [window.document.forms[i].submit()] it does not take any parameters. try this :

Re: javascript multiple submit

2001-06-13 Thread Klaus Thiele
Hi, i'm not a javascript-specialist, but something like this is working for me: Am Mittwoch, 13. Juni 2001 16:28 schrieben Sie: > I'm trying to use javascript to submit a form. The javascrip > function get called, but the form is not submited (i.e. the > ActionClass doesn't execute) Here is m

Re: javascript multiple submit

2001-06-13 Thread TODD HARNEY
I don't believe you need to pass the form object to the submit functionjust document.orderRegularForm.submit(); Hope this helps, Todd >>> [EMAIL PROTECTED] 6/13/01 10:28 >>> I'm trying to use javascript to submit a form. The javascrip function get called, but the form is not submited (i.e.

javascript multiple submit

2001-06-13 Thread Kiet Nguyen
I'm trying to use javascript to submit a form. The javascrip function get called, but the form is not submited (i.e. the ActionClass doesn't execute) Here is my jsp. .