I am trying to submit two forms at once. 

The first form is being submitted by "onclick" event which calls javascript
form.submit() and the second form is submitted by submit button itself when
it is clicked. The first form submission is failing i.e when I try to
retrieve the values of the first form later in the application it is blank. 
It is working on local machine but not on production server. Can there be
some network latency issue?
Is there a better way to submit two forms? 

Thanks for your response!

<input type="submit" name="method" value="Go"
onclick="javascript:document.forms['firstForm'].submit();" />





Lukasz Lenart wrote:
> 
>> I am using struts 1.1 and having problem submitting first form from
>> inside
>> the second form.
>> What happens when the first form is submitted from the second form using
>> javascript? Does it call the 'execute" method of first form?
> 
> I don't understand exactly what you mean, when you talk about "inside
> form", could you show some real page?
> 
>> For example:
>> Here is the code:
>> <form name='secondForm' method='post' action='secondForm.do'>
>>
>> <input type="submit" name="method" value="Go"
>> onclick="javascript:document.forms['firstForm'].submit();" />
>> </form>
>>
>> In the above code, "firstForm" is a struts form and it not getting
>> submitted. The values are getting lost.
> 
> What you mean "not getting submitted"? Do you have any JavaScript error or
> what?
> 
>> The weird thing is works on my local machine but when I deploy on
>> production
>> server it doesn't work. Any help is greatly appreciated.
> 
> Do you have locally the same server as on production? Did you try to
> access application which is running on your dev machine from some
> other computer?
> 
> 
> Regards
> -- 
> Lukasz
> http://www.lenart.org.pl/
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Submit-a-struts-form-using-javascript-tp18468491p18479084.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to