RE: Iterator tag and enumeration

2011-05-13 Thread Matthieu.Marc
Great, it nearly solve my problem. Thanks, Matthieu MARC -Message d'origine- De : Biesbrock, Kevin [mailto:biesbrock.ke...@aoins.com] Envoyé : vendredi 13 mai 2011 16:18 À : Struts Users Mailing List Objet : RE: Iterator tag and enumeration This peaked my interest so a colleag

RE: [OT] Re: Iterator tag and enumeration

2011-05-13 Thread Biesbrock, Kevin
Touché. I've only been speaking English my whole life... Beez > -Original Message- > From: Dave Newton [mailto:davelnew...@gmail.com] > Sent: Friday, May 13, 2011 10:20 AM > To: Struts Users Mailing List > Subject: [OT] Re: Iterator tag and enumeration > &g

[OT] Re: Iterator tag and enumeration

2011-05-13 Thread Dave Newton
On Fri, May 13, 2011 at 10:17 AM, Biesbrock, Kevin wrote: > This peaked my interest [...] Piqued, piqued. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache

RE: Iterator tag and enumeration

2011-05-13 Thread Biesbrock, Kevin
-Original Message- > From: Steven Yang [mailto:kenshin...@gmail.com] > Sent: Thursday, May 12, 2011 9:03 PM > To: Struts Users Mailing List > Subject: Re: Iterator tag and enumeration > > I dont quite get what exactly you want > > if your getListLocalization has all t

RE: Iterator tag and enumeration

2011-05-12 Thread Matthieu.Marc
getListLocalization() is a method of my Enum, not of my Action class. Matthieu MARC -Message d'origine- De : Steven Yang [mailto:kenshin...@gmail.com] Envoyé : vendredi 13 mai 2011 03:03 À : Struts Users Mailing List Objet : Re: Iterator tag and enumeration I dont quite get

Re: Iterator tag and enumeration

2011-05-12 Thread Steven Yang
ieu MARC > > > -Message d'origine- > De : Steven Yang [mailto:kenshin...@gmail.com] > Envoyé : jeudi 12 mai 2011 12:34 > À : Struts Users Mailing List > Objet : Re: Iterator tag and enumeration > > try > > > On Thu, May 12, 2011 at 3:3

RE: Iterator tag and enumeration

2011-05-12 Thread Matthieu.Marc
igine- De : Steven Yang [mailto:kenshin...@gmail.com] Envoyé : jeudi 12 mai 2011 12:34 À : Struts Users Mailing List Objet : Re: Iterator tag and enumeration try On Thu, May 12, 2011 at 3:33 PM, wrote: > Hi, > > I have an enumeration 'Localization' : > > public enum

Re: Iterator tag and enumeration

2011-05-12 Thread Steven Yang
try On Thu, May 12, 2011 at 3:33 PM, wrote: > Hi, > > I have an enumeration 'Localization' : > > public enum Localization { > >AIX("Aix-en-provence"), >ANGERS("Angers") ; > } > > And I want to put a form select in a jsp using s:select tag with all > Localization items, like : >

Iterator tag and enumeration

2011-05-12 Thread Matthieu.Marc
Hi, I have an enumeration 'Localization' : public enum Localization { AIX("Aix-en-provence"), ANGERS("Angers") ; } And I want to put a form select in a jsp using s:select tag with all Localization items, like : But I don't know what to put in the list parameter. In my Loca