RE: Checkboxes with display tag

2004-10-12 Thread Shabada, Gnaneshwer
PM To: Struts Users Mailing List Subject: Re: Checkboxes with display tag I think you need to be using multibox for this to work. I just did something similar recently and this is how I did it: I am using JSP2.0+JSTL+EL. Using id="row" in the display:table gives me a hand

Re: Checkboxes with display tag

2004-10-11 Thread Jason Lea
I think you need to be using multibox for this to work. I just did something similar recently and this is how I did it: I am using JSP2.0+JSTL+EL. Using id="row" in the display:table gives me a handle to each object in the list so I can get the id for each row. Then I use ${row.id} t

Checkboxes with display tag

2004-10-11 Thread Shabada, Gnaneshwer
Hello All, I have a Struts app that I am working on and am using DisplayTag to display my search results. So far everything works fine. Now, I want to add a checkbox for each row in this Displaytag which I was able to do but unable to capture the checked values in my Action Class. Please verify t