- Original Message -
From: "Marek Matus"
To: "Thiago H. de Paula Figueiredo"
Cc: "Tapestry users"
Sent: Wednesday, 17 August, 2011 08:08:46 GMT +02:00 Athens, Bucharest, Istanbul
Subject: Re: Passing parameters to nested components
Thanks for your respon
Thanks for your response.
If I use PageAttached and PageDetached like this:
@PageAttached
void onPageAttached() {
environment.push(IPageParams.class, this.pageParams);
}
@PageDetached
void onPageDetached() {
environment.pop(IPageParams.class);
}
Then I receiv
> I'm using Environmental to passing parameters to nested components. In my
> page there is:
>
> @SetupRender
> void onSetupRenderer() {
> environment.push(IPageParams.class, this.pageParams);
> }
>
> @AfterRender
> void afterRender()
>
Hi,
I'm using Environmental to passing parameters to nested components. In my
page there is:
@SetupRender
void onSetupRenderer() {
environment.push(IPageParams.class, this.pageParams);
}
@AfterRender
void afterRender()
{
environment.pop(IPageParams.