RE: nested bean parameters

2003-06-29 Thread Nick
Mike, Are you still having a problem with this? If so...looking at your original JSP tags, I am sure that the problem is with your names not matching up. This is what needs to happen: logic:iterate id=alert name=alertListForm property=userAlerts bean:write name=alert

RE: nested bean parameters

2003-06-29 Thread Mick Knutson
$PoolThread.run(ThreadPool.java:455) --- Thanks... Mick Knutson --- From: Nick [EMAIL PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: nested bean parameters Date: Sun, 29 Jun 2003 05:55:51 -0400 Mike, Are you still

Re: nested bean parameters

2003-06-29 Thread K.C. Baltz
PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Subject: RE: nested bean parameters Date: Sun, 29 Jun 2003 05:55:51 -0400 Mike, Are you still having a problem with this? If so...looking at your original JSP tags, I am sure that the problem is with your names not matching up

nested bean parameters

2003-06-28 Thread Mick Knutson
I have a Collection of AlertDto's. Each AlertDto has a method called getStartingLocation() that returns a LocationDto. That LocationDto has a method called getLocationTitle(). How, in a JSP can I get the locationTitle? I have tried: logic:iterate id=alert name=alertListForm

Re: nested bean parameters

2003-06-28 Thread Rick Reumann
On Sat, 2003-06-28 at 13:31, Mick Knutson wrote: I have a Collection of AlertDto's. Each AlertDto has a method called getStartingLocation() that returns a LocationDto. That LocationDto has a method called getLocationTitle(). How, in a JSP can I get the locationTitle? I have tried:

Re: nested bean parameters

2003-06-28 Thread Mick Knutson
PROTECTED] Reply-To: Struts Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: nested bean parameters Date: 28 Jun 2003 15:08:49 -0400 On Sat, 2003-06-28 at 13:31, Mick Knutson wrote: I have a Collection of AlertDto's. Each AlertDto has a method

Re: nested bean parameters

2003-06-28 Thread Rick Reumann
On Sat, 2003-06-28 at 15:10, Mick Knutson wrote: In AlertDto: public com.baselogic.yoursos.location.LocationDto getStartingLocation() { return this.StartingLocation; } StartingLocation should be startingLocation (lowercase s) -- Rick

Re: nested bean parameters

2003-06-28 Thread Mick Knutson
Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: nested bean parameters Date: 28 Jun 2003 15:30:44 -0400 On Sat, 2003-06-28 at 15:10, Mick Knutson wrote: In AlertDto: public com.baselogic.yoursos.location.LocationDto getStartingLocation() { return

Re: nested bean parameters

2003-06-28 Thread K.C. Baltz
What kind of output are you getting? It is possible something is wrong with the logic:iterate rather than the bean:write? Mick Knutson wrote: I have a Collection of AlertDto's. Each AlertDto has a method called getStartingLocation() that returns a LocationDto. That LocationDto has a method

Re: nested bean parameters

2003-06-28 Thread Mick Knutson
PROTECTED] Subject: Re: nested bean parameters Date: Sat, 28 Jun 2003 19:05:37 -0700 What kind of output are you getting? It is possible something is wrong with the logic:iterate rather than the bean:write? Mick Knutson wrote: I have a Collection of AlertDto's. Each AlertDto has a method called