Re: Submit with a link

2004-05-06 Thread ganesh g
U can use Michael McGrady <[EMAIL PROTECTED]> wrote:I am a notice in JavaScript. I have wondered in my brief perusal of JavaScript books how you tell which form is the referent of the formindex numbers? At 10:37 AM 5/5/2004, Henrique VIECILI wrote: >you can use javascript to do this job.

RE: Submit with a link

2004-05-06 Thread Suzanne Rizzo
ing List'" <[EMAIL PROTECTED]> cc: Subject:RE: Submit with a link In struts 1.0, we do as follows to determine formName for situations like this: <% String formName = ((org.apache.struts.action.ActionMapping)request.getAttribute(org.apache .struts.action.

RE: Submit with a link

2004-05-05 Thread Guillermo Meyer
eeta Ramani [mailto:[EMAIL PROTECTED] Sent: Miércoles, 05 de Mayo de 2004 05:06 p.m. To: Struts Users Mailing List Subject: RE: Submit with a link Michael: I think "forms" stands for the list (array?) of all forms in that document. So the form which appears (physically) first on the docu

RE: Submit with a link

2004-05-05 Thread Geeta Ramani
y [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 05, 2004 4:08 PM > To: Struts Users Mailing List > Cc: Struts Users Mailing List > Subject: Re: Submit with a link > > > I am a notice in JavaScript. I have wondered in my brief perusal of > JavaScript books how you t

Re: Submit with a link

2004-05-05 Thread Michael McGrady
I am a notice in JavaScript. I have wondered in my brief perusal of JavaScript books how you tell which form is the referent of the formindex numbers? At 10:37 AM 5/5/2004, Henrique VIECILI wrote: you can use javascript to do this job... like this: Enviar Formulário where is the index of t

Re: Submit with a link

2004-05-05 Thread Daniel H A Lima
Cacau, you must use a javascript function to submit your form. You can render a link like : or using --- cacau_braga <[EMAIL PROTECTED]> escreveu: > thanks... but my problem is with the atributtes of > form, like codUf, operacao, that parameteres don´t > go > to the action when i use the htm

Re: Submit with a link

2004-05-05 Thread cacau_braga
thanks... but my problem is with the atributtes of form, like codUf, operacao, that parameteres don´t go to the action when i use the html:link. Do you know, how do i submit that parameters ? Regards, Henrique, are u a brazilian ? - eu sou (i am.)

Re: Submit with a link

2004-05-05 Thread Henrique VIECILI
you can use javascript to do this job... like this: Enviar Formulário where is the index of the form you want to submit (starts in 0 - zero) Henrique Viecili - Original Message - From: "cacau_braga" <[EMAIL PROTECTED]> To: "user" <[EMAIL PROTECTED]> Sent: Wednesday, May 05, 2004 2:17

RE: Submit with a link

2004-05-05 Thread Glenn Wilson
Hi, The only way I've heard of to submit via a hyperlink would be some javascript call. You could try: This would work only if the form in question was the first form on the page. Since there are many different ways to get to the form you want to submit through the DOM, you may also find so