• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Nested Model Class + ModelDriven + Struts 2

 
Ranch Hand
Posts: 763
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi i have model class as bellow

Customer.java



Module.java



Now on the JSP I have 1 Select list and 3 textfields

The Select field contains list of customer_id (From customer table)
and the 3 textfields contains code,name,expiryDate which is in module table

now on submit of the JSP Page 3 textfields are getting stored in the Module Object but customer id is not getting stored in the Customer object's id propery.

So for time being i did as bellow



Is there any way i can tell my ModuleAction class to store the customerId in the id property of Customer Object which is in Module Object

Bellow is my JSP

 
Jigar Naik
Ranch Hand
Posts: 763
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think i did it...

i changed the name and id of <s:select to



 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic