On 9/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
On 9/12/06, puneet.lakhina wrote: > On 9/12/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> >> >> Hello, >> >> I do have a problem, because I don't know how to submit a form with >> javascript >> in struts. >> >> Normally, I'm submitting forms like this: >> >> <html:form action="somepath"> >> <html:submit property="myvalue" value="send"> >> </html:form> >> >> I'm receiving the value with the getter-method getMyvalue() of the >> appropriate >> ActionForm. >> >> >> >> This time, I want to submit the form with a >> >> <a href=javascript:dosubmit("value")>Some text</a> >
I think you should be doing it onclick <a href="" onclick='doSubmit("value")'>Some Text</a> And could you please make your mail client use Re for reply to a message instead of Antwort. Helps in following the thread.
> Assuming your property name is myvalue > try this is your java script > > document.formname.myvalue.value= what > document.formname.submit(); This doesn't work, too - I'm getting no javascript-error :-(. I don't see any value in getMyvalue(). >> dosubmit is a function like >> >> <script> >> dosubmit(what) >> { >> document.formname.value=what; >> document.formname.submit(); >> } >> </script> >> >> >> The browser submits the form (I'm getting no javascript error), but I >> don't get >> the value of document.formname.value. >> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
-- Puneet