Re: nested bean parameters

2003-06-29 Thread K.C. Baltz
ing 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 having a problem with this? If so...looking at your original JSP tags, I am sure t

RE: nested bean parameters

2003-06-29 Thread Mick Knutson
un(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 Dat

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: In the object called "alertListForm", there must be a getter and setter for "userAlerts": getUserAlerts

Re: nested bean parameters

2003-06-28 Thread Mick Knutson
> To: Struts Users Mailing List <[EMAIL 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 Coll

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
I actually changed the JSP: but also tried: but I got the same errors. --- Thanks... Mick Knutson --- From: Rick Reumann <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: Struts Users Mailing List <[EMAIL PROTECTED]> Subject

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
<[EMAIL 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

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:

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: --- Thanks... Mick Knutson --- _