RE: indexed property is not updated after submit

2004-12-16 Thread Kandula, Sunita
blic String getEmailAddress() { > > return emailAddress; > > } > > > > /** > > * @param string > > */ > > public void setEmailAddress(String string) { > >emailAddress = string; > > } > > > > > > >

RE: indexed property is not updated after submit

2004-12-15 Thread Sachin Bhutada
PROTECTED] Sent: Wednesday, December 15, 2004 11:42 PM To: 'Struts Users Mailing List' Subject: RE: indexed property is not updated after submit Could be done like this: <%@ taglib uri="/WEB-INF/struts-nested.tld" prefix="nested" %> -Original Mes

Re: indexed property is not updated after submit

2004-12-15 Thread Sebastián Gorgo
CTED] Sent: Wednesday, December 15, 2004 2:40 PM To: Struts Users Mailing List Subject: RE: indexed property is not updated after submit Thanks, I think I'm getting close)) But your example gives me this exception: --- Invalid argument looking up property model.currentP

RE: indexed property is not updated after submit

2004-12-15 Thread Evgeniy Strokin
ing getEmailAddress() { > > return emailAddress; > > } > > > > /** > > * @param string > > */ > > public void setEmailAddress(String string) { > >emailAddress = string; > > } > > > > > > >

RE: indexed property is not updated after submit

2004-12-15 Thread Evgeniy Strokin
t; > /** > * @param string > */ > public void setEmailAddress(String string) { >emailAddress = string; > } > > > > -Original Message- > From: Evgeniy Strokin > [mailto:[EMAIL PROTECTED] > Sent: Wednesday, December 15, 2004 2:40 PM > To: Struts Users Mailing List

RE: indexed property is not updated after submit

2004-12-15 Thread Kandula, Sunita
setEmailAddress(String string) { emailAddress = string; } -Original Message- From: Evgeniy Strokin [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 2:40 PM To: Struts Users Mailing List Subject: RE: indexed property is not updated after submit Thanks, I think I'm getting

RE: indexed property is not updated after submit

2004-12-15 Thread Evgeniy Strokin
Thanks, I think I'm getting close)) But your example gives me this exception: --- Invalid argument looking up property model.currentPerson.contactInfo.emails[0].emailAddress of bean form --- Could you clue me in why is what? Thanks, Eugene --- "Kand

Re: indexed property is not updated after submit

2004-12-15 Thread Sebastián Gorgo
Evgeniy Strokin wrote: Thanks, but the server doesn't respond. Could you sent the pdf or copy and past the page from pdf. I'm really stack with this problem and appreciate any help. --- Sebastián Gorgo <[EMAIL PROTECTED]> wrote: Evgeniy Strokin wrote: Hi, I have a problem: Struts config file has:

RE: indexed property is not updated after submit

2004-12-15 Thread Kandula, Sunita
Could be done like this: <%@ taglib uri="/WEB-INF/struts-nested.tld" prefix="nested" %> -Original Message- From: Evgeniy Strokin [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 15, 2004 10:04 AM To: [EMAIL PROTECTED] Subject: indexed property is not updated after submit

Re: indexed property is not updated after submit

2004-12-15 Thread Evgeniy Strokin
Thanks, but the server doesn't respond. Could you sent the pdf or copy and past the page from pdf. I'm really stack with this problem and appreciate any help. --- Sebastián Gorgo <[EMAIL PROTECTED]> wrote: > Evgeniy Strokin wrote: > > Hi, > > I have a problem: > > Struts config file has: > > > >

Re: indexed property is not updated after submit

2004-12-15 Thread Sebastián Gorgo
Evgeniy Strokin wrote: Hi, I have a problem: Struts config file has: On JSP I have: property="model.currentPerson.contactInfo.emails" name="form" > It generates folowing HTML: But when I submit the form actual values in a bean are not updated. They are still the same. This is my Bean: p