• 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

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: 67747
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.
 
"To do good, you actually have to do something." -- Yvon Chouinard
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic