Re: Accessing unbound textfields

2006-05-16 Thread Lothar Reisinger
lly checked the QueryParameterMap of the RequestCycle, but they're nowhere in sight :( -Original Message- From: Andreas Andreou [mailto:[EMAIL PROTECTED] Sent: dinsdag 16 mei 2006 16:39 To: Tapestry users Subject: Re: Accessing unbound textfields See http://jakarta.apache.org/tapestry/

RE: Accessing unbound textfields

2006-05-16 Thread Bode, Bianca
Never mind, I was to quick with my reply ;) I forgot to add the name attribute to the generated fields :) -Original Message- From: Bode, Bianca Sent: dinsdag 16 mei 2006 17:37 To: Tapestry users Subject: RE: Accessing unbound textfields Looks like the generated textfields cannot be

Re: Accessing unbound textfields

2006-05-16 Thread Andreas Andreou
Cycle, but they're nowhere in sight :( -Original Message- From: Andreas Andreou [mailto:[EMAIL PROTECTED] Sent: dinsdag 16 mei 2006 16:39 To: Tapestry users Subject: Re: Accessing unbound textfields See http://jakarta.apache.org/tapestry/tapestry/apidocs/org/apache/tapestry/ IRequest

RE: Accessing unbound textfields

2006-05-16 Thread Bode, Bianca
dag 16 mei 2006 16:39 To: Tapestry users Subject: Re: Accessing unbound textfields See http://jakarta.apache.org/tapestry/tapestry/apidocs/org/apache/tapestry/ IRequestCycle.html getParameter and getParameters will do the trick Bode, Bianca wrote: > Hello all, > > I was wondering if

RE: Accessing unbound textfields

2006-05-16 Thread Bode, Bianca
Reisinger [mailto:[EMAIL PROTECTED] Sent: dinsdag 16 mei 2006 16:31 To: Tapestry users Subject: Re: Accessing unbound textfields Create an own component, derived from AbstractFormComponent. Build the html in the method renderFormComponent. Receive the parameters in the method rewindFormComponent. You

RE: Accessing unbound textfields

2006-05-16 Thread Bode, Bianca
OK that's what I need, thank you :) -Original Message- From: Andreas Andreou [mailto:[EMAIL PROTECTED] Sent: dinsdag 16 mei 2006 16:39 To: Tapestry users Subject: Re: Accessing unbound textfields See http://jakarta.apache.org/tapestry/tapestry/apidocs/org/apache/tap

Re: Accessing unbound textfields

2006-05-16 Thread Lothar Reisinger
Create an own component, derived from AbstractFormComponent. Build the html in the method renderFormComponent. Receive the parameters in the method rewindFormComponent. You should manage the required javascript with the tapestry script mechanism in the same class. Does that help? Bode, Bianca

Re: Accessing unbound textfields

2006-05-16 Thread Andreas Andreou
See http://jakarta.apache.org/tapestry/tapestry/apidocs/org/apache/tapestry/IRequestCycle.html getParameter and getParameters will do the trick Bode, Bianca wrote: Hello all, I was wondering if anyone has ever did something like I've described below, and if so how???: I need to make a page wi

Accessing unbound textfields

2006-05-16 Thread Bode, Bianca
Hello all, I was wondering if anyone has ever did something like I've described below, and if so how???: I need to make a page with 1 textfield, and when some enters a number in this Textfield I generate (with javascript) that number of extra Textfields. Tapestry is unaware of these extra fields,