Re: Getting values from two different beans in the same form

2004-03-09 Thread as as
Thanks Daniel and Wendy! I am trying this now and will post my results soon ~~~Sam. Daniel Henrique Alves Lima <[EMAIL PROTECTED]> wrote: I don't know if a got it...You can use nested beans inside your ActionForm, like: FirstBean -> has get/set name and get/set id SecondBean -> has get/set ver

RE: Getting values from two different beans in the same form

2004-03-09 Thread Wendy Smoak
> From: as as [mailto:[EMAIL PROTECTED] > I have a question on using two beans in same form. > I get the followig error: > javax.servlet.jsp.JspException: No getter method for property > name of bean testModule > basically I am trying to access name and id of bean1 and > version of bean2 to

Re: Getting values from two different beans in the same form

2004-03-09 Thread Daniel Henrique Alves Lima
I don't know if a got it...You can use nested beans inside your ActionForm, like: FirstBean -> has get/set name and get/set id SecondBean -> has get/set version MyActionForm -> has get/set firstBean and secondBean You can do : Hi, I have a question on using two beans in same form..