Re: use of ActivationRequestParameter

2011-07-11 Thread Taha Hafeez
Hi Bob, There is already a section http://tapestry.apache.org/annotations.html but it points to the javadoc. Instead it would be better if this page contained a description/example of each annotation and a pointer to the annotation's javadoc. It is a good idea for a blog post "Tapestry Annotation

Re: use of ActivationRequestParameter

2011-07-11 Thread Bob Harner
Angelo, If you can think of where in the documentation you would tend to look for this, I will make sure it gets added there. Bob Harner On Jul 11, 2011 1:18 AM, "Angelo C." wrote: > hi taha, > > right, you and Tiago, always come to my mind when I post a question, see who > answer my question:)

Re: use of ActivationRequestParameter

2011-07-10 Thread Lenny Primak
Tapestry 5 in action book has all the goodies. Tremendously helpful. On Jul 11, 2011, at 1:18 AM, "Angelo C." wrote: > hi taha, > > right, you and Tiago, always come to my mind when I post a question, see who > answer my question:) > > >> @ActivationRequestParameter >> private String name

Re: use of ActivationRequestParameter

2011-07-10 Thread Angelo C.
hi taha, right, you and Tiago, always come to my mind when I post a question, see who answer my question:) >@ActivationRequestParameter >private String name; >as the field name is used by default >http://tapestry.apache.org/5.3/apidocs/org/apache/tapestry5/annotations/ActivationRequestParam

Re: use of ActivationRequestParameter

2011-07-10 Thread Thiago H. de Paula Figueiredo
On Mon, 11 Jul 2011 01:59:31 -0300, Taha Hafeez wrote: Always no, most of the time yes. Grabbing all opportunities before Thiago is awake :) I'm awake, but it's 2am here in Belo Horizonte, Brazil and I'm quite lazy now. :P -- Thiago H. de Paula Figueiredo Independent Java, Apache Tapes

Re: use of ActivationRequestParameter

2011-07-10 Thread Taha Hafeez
On Mon, Jul 11, 2011 at 10:19 AM, Angelo C. wrote: > hi taha, > Hi > > seems you are online all the time:) i tried that /test/123, not working > too, > Always no, most of the time yes. Grabbing all opportunities before Thiago is awake :) > however I realize it should have been: > > /test?na

Re: use of ActivationRequestParameter

2011-07-10 Thread Angelo C.
hi taha, seems you are online all the time:) i tried that /test/123, not working too, however I realize it should have been: /test?name=123 @ActivationRequestParameter("name") private String queryParam; that works. -- View this message in context: http://tapestry.1045711.n5.nabble.com/use

Re: use of ActivationRequestParameter

2011-07-10 Thread Taha Hafeez
Did you try www.sample.com/test/123 regards Taha On Mon, Jul 11, 2011 at 10:05 AM, Angelo C. wrote: > hi, > not sure if I understand this correctly, was hoping i can do this: > > www.sample.com/test?123 > > for that I created following page class, but queryParam is always null: > > public cla