RE: JSF - display a collection in one line?

2009-03-03 Thread kareda
thanks for helpful replies, dataList works good. --K Zummy wrote: > > > Can you use Google Collection's Join? > > http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common > /base/Join.html > > John > -Original Message- > From: kareda [mailto:k...@digiplace.ch]

RE: JSF - display a collection in one line?

2009-02-24 Thread John Carlson
Can you use Google Collection's Join? http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common /base/Join.html John -Original Message- From: kareda [mailto:k...@digiplace.ch] Sent: Tuesday, February 24, 2009 2:11 AM To: users@myfaces.apache.org Subject: JSF - display

Re: JSF - display a collection in one line?

2009-02-24 Thread Cagatay Civici
ui repeat, datalist or a similar thing would help too. On Feb 24, 2009, at 2:25 PM, Mert Çalışkan wrote: I did that with a converter while ago, http://www.jroller.com/mert/entry/collectiontocommaseperatedtextconverter Mert On Tue, Feb 24, 2009 at 12:11 PM, kareda wrote: Hi, A collection of

Re: JSF - display a collection in one line?

2009-02-24 Thread Mert Çalışkan
I did that with a converter while ago, http://www.jroller.com/mert/entry/collectiontocommaseperatedtextconverter Mert On Tue, Feb 24, 2009 at 12:11 PM, kareda wrote: > > > Hi, > A collection of Strings, I just want to display them in one line. > Is that possible? > > > -- > View this message i

RE: JSF - display a collection in one line?

2009-02-24 Thread Matt.Rossner-prest
Sure, the tomahawk dataList component does just that. Check out the docs here. http://myfaces.apache.org/tomahawk-project/tomahawk12/tagdoc/t_dataList.html use layout="simple" to display them on one line. -Original Message- From: kareda [mailto:k...@digiplace.ch] Sent: mardi 24 février

Re: JSF - display a collection in one line?

2009-02-24 Thread Ingmar Lötzsch
kareda schrieb: Hi, A collection of Strings, I just want to display them in one line. Is that possible? What about using StaticText/Label/OutputText ... and Collection.toString()?