• 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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

exract the values of a row which is dynamically generated

 
Ranch Hand
Posts: 159
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hello members

actually i'm trying to display the records fetched from a DB on a jsp, the list of POJO will be returned from a DAO class and i'm getting this list object & iterating it in the jsp directly and displaying them there itself, upto now working fine.

but the problem now i'm facing is i have to place a radio button for every record being displayed and when a particular record is selected (by selecting the respective radio button) i should be able to edit the data and update the particular record when clicked on a button, i'm actually displaying the data in a jsp in a textbox itself but how to link the entire record when a particular radio button is selected.

i guess i gave all information and problem if any one fell it is insufficient then please post your question.

can any please help me in this regard.
 
Sheriff
Posts: 67752
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You don't need the entire record -- all you need is the primary key so you can fetch the record data from the database.
 
I'm all tasted up for a BLT! This tiny ad wants a monte cristo!
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic