Re: How to Pass Client's Web Page Inputs to a Struts Action Link?

2006-06-27 Thread Martin Gainty
o: "Struts Users Mailing List" Sent: Tuesday, June 27, 2006 12:38 PM Subject: Re: How to Pass Client's Web Page Inputs to a Struts Action Link? >I was thinking to use the attributes: paramId, > paramName, paramProperty in my action="."/> tag.

Re: How to Pass Client's Web Page Inputs to a Struts Action Link?

2006-06-27 Thread Michael Jouravlev
Your table's checkboxes, rows and columns are selected in runtime on client, while JSP tag is processed on server. You can do what is called "partial submit", that is to submit a form each time you click on checkbox. This way your application will know current selection and will be able to stick

Re: How to Pass Client's Web Page Inputs to a Struts Action Link?

2006-06-27 Thread Caroline Jen
I was thinking to use the attributes: paramId, paramName, paramProperty in my tag. But I do not know how to pass more than one set of them. --- Michael Jouravlev <[EMAIL PROTECTED]> wrote: > I can think of those: > > 1) Use Javascript in link's "onclick" event to > collect form data. > 2) Use

Re: How to Pass Client's Web Page Inputs to a Struts Action Link?

2006-06-27 Thread Michael Jouravlev
I can think of those: 1) Use Javascript in link's "onclick" event to collect form data. 2) Use regular submit button, use CSS to display it as a link. On 6/27/06, Caroline Jen <[EMAIL PROTECTED]> wrote: I am working on a JSP written in JSTL and html-el tags. The JSP is displayed fine. This JS

How to Pass Client's Web Page Inputs to a Struts Action Link?

2006-06-27 Thread Caroline Jen
I am working on a JSP written in JSTL and html-el tags. The JSP is displayed fine. This JSP has a table. Each row of the table has a checkbox. Clients may select any number of the checkboxes and click on a link to invoke a Struts action. I would like to pass the checkbox and every column of ea