RE: how to submit form using html:link tag

2003-12-08 Thread Tim Lucia
html:link ... onclick=x(arg); .../

Tim Lucia

-Original Message-
From: Nisith Dash [mailto:[EMAIL PROTECTED] 
Sent: Monday, December 08, 2003 7:28 AM
To: Struts Users Mailing List
Subject: how to submit form using html:link tag


Hi,

Can anyone of you help me with this..i have a hyperlink in my JSP on
clicking which i want to submit an action form with some request
parameters along with the form.Clicking the hyperlink in the JSP should
ideally perform the following task which is done by this javascript
below:

function x ( arg1)
{
 document.ActionFormName.action =
../../someAction.do?method=subMethodNamenewSearch=truekey= + arg1;
 document.ActionFormName.submit(); 
}

I have tried using the html:link href= /html:link, html:link
page= /html:link, but though the action is being called, the Action
Form is not being submitted to the
action class. I am not quite sure whether html:link forward=
/html:link will help as i don't know how to use it in the present
scenario.

Thanks in advance for any suggestion to the above.

Nisith



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



Re: how to submit form using html:link tag

2003-12-08 Thread Nisith Dash
in case html:link  is specified , you have to give either a forward, or a
href or a page attribute. onclick will not work here..the error is:

 Cannot create rewrite URL: java.net.MalformedURLException: You must specify
exactly one of forward, href,

how can i specify the forward attribute so that my purpose is achieved.

- Original Message -
From: Tim Lucia [EMAIL PROTECTED]
To: 'Struts Users Mailing List' [EMAIL PROTECTED]
Sent: Monday, December 08, 2003 6:13 PM
Subject: RE: how to submit form using html:link tag


 html:link ... onclick=x(arg); .../

 Tim Lucia

 -Original Message-
 From: Nisith Dash [mailto:[EMAIL PROTECTED]
 Sent: Monday, December 08, 2003 7:28 AM
 To: Struts Users Mailing List
 Subject: how to submit form using html:link tag


 Hi,

 Can anyone of you help me with this..i have a hyperlink in my JSP on
 clicking which i want to submit an action form with some request
 parameters along with the form.Clicking the hyperlink in the JSP should
 ideally perform the following task which is done by this javascript
 below:

 function x ( arg1)
 {
  document.ActionFormName.action =
 ../../someAction.do?method=subMethodNamenewSearch=truekey= + arg1;
  document.ActionFormName.submit();
 }

 I have tried using the html:link href= /html:link, html:link
 page= /html:link, but though the action is being called, the Action
 Form is not being submitted to the
 action class. I am not quite sure whether html:link forward=
 /html:link will help as i don't know how to use it in the present
 scenario.

 Thanks in advance for any suggestion to the above.

 Nisith



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


DISCLAIMER: The information contained in this message is intended only and solely for 
the addressed individual or entity indicated in this message and for the exclusive use 
of the said addressed individual or entity indicated in this message (or responsible 
for delivery of the message to such person) and may contain legally privileged and 
confidential information belonging to Tata Consultancy Services. It must not be 
printed, read, copied, disclosed, forwarded, distributed or used (in whatsoever 
manner) by any person other than the addressee. Unauthorized use, disclosure or 
copying is strictly prohibited and may constitute unlawful act and can possibly 
attract legal action, civil and/or criminal. The contents of this message need not 
necessarily reflect or endorse the views of Tata Consultancy Services on any subject 
matter. Any action taken or omitted to be taken based on this message is entirely at 
your risk and neither the originator of this message nor Tata Consultancy Services 
takes any responsibility or liability towards the same. Opinions, conclusions and any 
other information contained in this message that do not relate to the official 
business of Tata Consultancy Services shall be understood as neither given nor 
endorsed by Tata Consultancy Services or any affiliate of Tata Consultancy Services. 
If you have received this message in error, you should destroy this message and may 
please notify the sender by e-mail. Thank you.


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

RE : how to submit form using html:link tag

2003-12-08 Thread Franck
If you don't want to use Javascript to submit your form,
I think you can use a submit button with a special CSS (on IE).
The submit button will then looks like an hyperlink.

Bye

--
Franck Lefebure


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



RE: how to submit form using html:link tag

2003-12-08 Thread Tim Lucia
This works for me:

html:link href=#
onclick=document.courseForm.submit();Done/html:link

Put whatever javascript you want in the onclick handler.

Tim Lucia

 -Original Message-
 From: Nisith Dash [mailto:[EMAIL PROTECTED] 
 Sent: Monday, December 08, 2003 7:51 AM
 To: Struts Users Mailing List
 Subject: Re: how to submit form using html:link tag
 
 
 in case html:link  is specified , you have to give either a 
 forward, or a href or a page attribute. onclick will not work 
 here..the error is:
 
  Cannot create rewrite URL: java.net.MalformedURLException: 
 You must specify exactly one of forward, href,
 
 how can i specify the forward attribute so that my purpose is 
 achieved.
 
 - Original Message -
 From: Tim Lucia [EMAIL PROTECTED]
 To: 'Struts Users Mailing List' [EMAIL PROTECTED]
 Sent: Monday, December 08, 2003 6:13 PM
 Subject: RE: how to submit form using html:link tag
 
 
  html:link ... onclick=x(arg); .../
 
  Tim Lucia
 
  -Original Message-
  From: Nisith Dash [mailto:[EMAIL PROTECTED]
  Sent: Monday, December 08, 2003 7:28 AM
  To: Struts Users Mailing List
  Subject: how to submit form using html:link tag
 
 
  Hi,
 
  Can anyone of you help me with this..i have a hyperlink in 
 my JSP on 
  clicking which i want to submit an action form with some request 
  parameters along with the form.Clicking the hyperlink in the JSP 
  should ideally perform the following task which is done by this 
  javascript
  below:
 
  function x ( arg1)
  {
   document.ActionFormName.action = 
  
 ../../someAction.do?method=subMethodNamenewSearch=truekey=
  + arg1;  
  document.ActionFormName.submit(); }
 
  I have tried using the html:link href= /html:link, html:link 
  page= /html:link, but though the action is being called, the 
  Action Form is not being submitted to the action class. I 
 am not quite 
  sure whether html:link forward= /html:link will help 
 as i don't 
  know how to use it in the present scenario.
 
  Thanks in advance for any suggestion to the above.
 
  Nisith
 
 
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 



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