RE: Dynamic list of strings in a form

2008-05-02 Thread Blower, Andy
omFormInjector() { return _newRow; } } > -Original Message- > From: Igor Drobiazko [mailto:[EMAIL PROTECTED] > Sent: 15 April 2008 15:28 > To: Tapestry users > Subject: Re: Dynamic list of strings in a form > > Ups, wrong template url. This o

RE: Dynamic list of strings in a form

2008-05-02 Thread Blower, Andy
l Message- > From: Igor Drobiazko [mailto:[EMAIL PROTECTED] > Sent: 15 April 2008 15:28 > To: Tapestry users > Subject: Re: Dynamic list of strings in a form > > Ups, wrong template url. This one is the correct one: > http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tap

RE: Dynamic list of strings in a form

2008-05-02 Thread Blower, Andy
; -Original Message- > From: Igor Drobiazko [mailto:[EMAIL PROTECTED] > Sent: 15 April 2008 15:28 > To: Tapestry users > Subject: Re: Dynamic list of strings in a form > > Ups, wrong template url. This one is the correct one: > http://svn.apache.org/viewvc/tapestry/ta

Re: Dynamic list of strings in a form

2008-04-23 Thread Michael Dukaczewski
On Tue, Apr 15, 2008 at 6:51 AM, Michael Dukaczewski > <[EMAIL PROTECTED]> wrote: >> I am using Tapestry 5.0.11 and have a problem with a dynamic list of strings >> in a form. What I am trying, is the following: >> >> In the Page.java: >> >> @Persis

Re: Dynamic list of strings in a form

2008-04-15 Thread Josh Canfield
s into your list. Hope that helps, Josh On Tue, Apr 15, 2008 at 6:51 AM, Michael Dukaczewski <[EMAIL PROTECTED]> wrote: > I am using Tapestry 5.0.11 and have a problem with a dynamic list of strings > in a form. What I am trying, is the following: > > In the Page.java: > >

Re: Dynamic list of strings in a form

2008-04-15 Thread Marcus
Hi Michael, Try Grid component instead a Loop. Marcus

Re: Dynamic list of strings in a form

2008-04-15 Thread Francois Armand
Michael Dukaczewski wrote: [...] I have a list of values, the user has to enter. The number of values, that have to be typed in, is dynamic, so the user has to extend the form. The add button works, but the values are not saved. Can someone tell me, that I am do

Re: Dynamic list of strings in a form

2008-04-15 Thread Igor Drobiazko
e: > > > I am using Tapestry 5.0.11 and have a problem with a dynamic list of > > strings in a form. What I am trying, is the following: > > > > In the Page.java: > > > > @Persist > > private List items; > > > > @Property > > private St

Re: Dynamic list of strings in a form

2008-04-15 Thread Igor Drobiazko
Tapestry 5.0.11 and have a problem with a dynamic list of > strings in a form. What I am trying, is the following: > > In the Page.java: > > @Persist > private List items; > > @Property > private String item; > > public List getItems() { >if (items == nu

Dynamic list of strings in a form

2008-04-15 Thread Michael Dukaczewski
I am using Tapestry 5.0.11 and have a problem with a dynamic list of strings in a form. What I am trying, is the following: In the Page.java: @Persist private List items; @Property private String item; public List getItems() { if (items == null) { items = new