Re: Nested Properties

2005-12-09 Thread Laurie Harper
Raghuveer wrote: In My web application I have one ActionForm and in that I have one getter setter method for other java bean. In my JSP i want to access the Java bean for display .Display is working fine as text box value and display with bean:write. But whene ever i submit the JSP page ..How t

Re: Nested properties in DynaActionForm

2005-06-08 Thread Laurie Harper
But I set up iterationLength as a HashMap; I thought BeanUtils could handle maps, so it'd do getIterationLength.get("time"). Perhaps I'm mixing up BeanUtils and JSTL semantics. L. Hubert Rabago wrote: Nested properties with DynaActionForms actually require you to nest objects. :) Using a pr

Re: Nested properties in DynaActionForm

2005-06-08 Thread Hubert Rabago
Nested properties with DynaActionForms actually require you to nest objects. :) Using a property name like "iterationLength.time" would be like saying "getIterationLength().getTime()", and this is what BeanUtils would try to do. Hubert On 6/7/05, Laurie Harper <[EMAIL PROTECTED]> wrote: > I'm p

Re: Nested properties with javascript

2004-11-17 Thread Mark Lowe
In fact.. Looks like you may want to do this wrote: > The form propert will be whatever is rendered in the name attribute. Try this. > > function fillSelect(myform) { > theSelect = myform.elements['userForm.agencyId']; > > > > > On Wed, 17 Nov 2004 11:24:36 -0600, Apte, Dhanashree (Noblest

Re: Nested properties with javascript

2004-11-17 Thread Mark Lowe
The form propert will be whatever is rendered in the name attribute. Try this. function fillSelect(myform) { theSelect = myform.elements['userForm.agencyId']; On Wed, 17 Nov 2004 11:24:36 -0600, Apte, Dhanashree (Noblestar) <[EMAIL PROTECTED]> wrote: > Hi, > > In my jsp, i am using nested

RE: Nested Properties in ActionForms

2004-11-02 Thread Apte, Dhanashree (Noblestar)
:) thanks for pointing that out.. that was a dumb mistake I made while typing in my question. They are public in the actual class. -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 10:39 AM To: Struts Users Mailing List Subject: RE: Nested

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 ActionForms > > > Hi All, > >

RE: Nested Properties in ActionForms

2004-11-01 Thread David G. Friedman
Shouldn't that bean use EmployeeInfoForm not EmployeeForm? It depends on how you configured your ActionForms. How did you configure it? Regards, David -Original Message- From: Apte, Dhanashree (Noblestar) [mailto:[EMAIL PROTECTED] Sent: Monday, November 01, 2004 12:26 PM To: 'Struts User

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]