• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Arraylist in JSP with Html radio

 
Ranch Hand
Posts: 146
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.

I am trying to use javascript but am not able to acheive the requirment. 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.



 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am not exactly clear with your requirement.
Please correct me if I am wrong... what you want is to select accept or reject corresponding to each row.
Eg if I select reject at row 3 then is I am able to select accept at row 2 or at a time only one radio button in total 7 rows can be selected.
According to your code what I feel that, you would be able to select only 1 radio button from total of 14 (2 * 7) radio buttons.
 
A tiny monkey bit me and I got tiny ads:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic