| Author |
Html Radio buttons and Arraylist
|
Luke Zechariah
Ranch Hand
Joined: Sep 27, 2005
Posts: 106
|
|
Hello,
I have arraylist in my action and I am storing it as session to display on the jsp page.
Action.java:
request.getSession().setAttribute("asstRqstConcResults", asstRqstResults);
Inside the Arraylist the objects stored are of the Actionform: ConcurrentCaseInfoForm class.
On the jsp I am displaying as follows:
What I am trying to acheive is, when the user selects the radio buttons either accept or reject. I want to store the values(whatever the user selects) and submit the form. That is onclicking "OK"(which is not in the code) button, I want to send the values the user choose to the action. Lets assume an example:
There are seven objects in the arraylist and so seven rows would be displayed. Each row will have an accept and reject radio button, now the user can select accept on one row and could select reject on the other row. Lets says the user selects reject for the 3rd row. So I want my application to associate the reject decision with its information on that row and submit it so that i will know what the user selected. Depending on what the user selected I have to perform the further actions.
Please see I am using indexed radio buttons by mentioning indexed="true" for selecting the accept or reject.
Please let me know if you have any other suggestions too.
Thank you very much.
Luke.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56218
|
|
|
Please be sure to ask Struts questions in the Struts forum. I have moved this post there for you.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Luke Zechariah
Ranch Hand
Joined: Sep 27, 2005
Posts: 106
|
|
|
Can any one please answer for this. My deadline is soon approaching. Thanks for your time.
|
 |
jaisai vijay
Ranch Hand
Joined: Dec 17, 2009
Posts: 70
|
|
Hello,
May be this example would be useful for you
http://faq.javaranch.com/java/IndexedProperties
http://www.developer.com/java/web/article.php/2233591/Succeeding-With-Struts-Indexed-Properties-and-Beans-as-Properties.htm
|
 |
 |
|
|
subject: Html Radio buttons and Arraylist
|
|
|