Re: T5 Reference page attributes from a component

2011-06-24 Thread Taha Tapestry
Hi There are two phases after you submit a form. First comes the action phase and then the render phase. You are pushing an object in the render phase so at the time of action the object is not there. Regards Taha On Jun 24, 2011, at 10:47 PM, Tony Nelson wrote: > On Jun 23, 2011, at 6:27

Re: T5 Reference page attributes from a component

2011-06-24 Thread Thiago H. de Paula Figueiredo
On Fri, 24 Jun 2011 14:17:43 -0300, Tony Nelson wrote: Thank you very much for your help. I was able to get my form to display properly using the Environmental Service and adding the following to my base class: void beginRender() { environment.push(SearchParameters.class, ge

Re: T5 Reference page attributes from a component

2011-06-24 Thread Tony Nelson
On Jun 23, 2011, at 6:27 PM, Thiago H. de Paula Figueiredo wrote: > On Thu, 23 Jun 2011 18:18:39 -0300, Tony Nelson wrote: > >> In our T4 app we made a lot of use of this type of construct: >>> /> > >> This particular component is embedded 4 layers deep and was able to reach >> back all th

Re: T5 Reference page attributes from a component

2011-06-23 Thread Martin Strand
On Thu, 23 Jun 2011 23:18:39 +0200, Tony Nelson wrote: In our T4 app we made a lot of use of this type of construct: default-value="ognl:page.selectedColumn" /> This particular component is embedded 4 layers deep and was able to reach back all the way to Page class to get values. Is t

Re: T5 Reference page attributes from a component

2011-06-23 Thread Thiago H. de Paula Figueiredo
On Thu, 23 Jun 2011 18:18:39 -0300, Tony Nelson wrote: In our T4 app we made a lot of use of this type of construct: default-value="ognl:page.selectedColumn" /> This particular component is embedded 4 layers deep and was able to reach back all the way to Page class to get values. Is

T5 Reference page attributes from a component

2011-06-23 Thread Tony Nelson
In our T4 app we made a lot of use of this type of construct: This particular component is embedded 4 layers deep and was able to reach back all the way to Page class to get values. Is there a similar construct in T5 or am I going to have to pass these values explicitly down the component