RE: Nested Properties in ActionForms

2004-11-02 Thread Apte, Dhanashree (Noblestar)
Properties in ActionForms Your accessors on the Form class are private. Make them public. > -Original Message- > From: Apte, Dhanashree (Noblestar) [mailto:[EMAIL PROTECTED] > Sent: Monday, November 01, 2004 9:26 AM > To: 'Struts Users Mailing List' > Subj

RE: Nested Properties in ActionForms

2004-11-02 Thread Karr, David
Your accessors on the Form class are private. Make them public. > -Original Message- > From: Apte, Dhanashree (Noblestar) [mailto:[EMAIL PROTECTED] > Sent: Monday, November 01, 2004 9:26 AM > To: 'Struts Users Mailing List' > Subject: Nested Properties in A

RE: Nested Properties in ActionForms

2004-11-01 Thread David G. Friedman
x27;Struts Users Mailing List' Subject: Nested Properties in ActionForms Hi All, I need to know the correct way to display nested properties of a form on my jsp using struts. I have an ActionForm of type: public class EmployeeInfoForm extends ActionForm { private Name empName;

RE: Nested Properties in ActionForms

2004-11-01 Thread Apte, Dhanashree (Noblestar)
With this, I get: No getter method for property empName.firstName of bean employeeForm. Thanks! -Original Message- From: Ankur Gupta [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 11:47 AM To: 'Struts Users Mailing List' Subject: RE: Nested Properties in A

RE: Nested Properties in ActionForms

2004-11-01 Thread Ankur Gupta
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Nested Properties in ActionForms

2004-11-01 Thread Apte, Dhanashree (Noblestar)
Hi All, I need to know the correct way to display nested properties of a form on my jsp using struts. I have an ActionForm of type: public class EmployeeInfoForm extends ActionForm { private Name empName; private Name spouseName; private String getFirstName() {