Re: T5 selective rendering

2007-05-29 Thread Kristian Marinkovic
Bitte antworten an Tapestry users users@tapestry.apache.org An Tapestry users users@tapestry.apache.org Kopie Thema Re: T5 selective rendering sorry , pressed wrong button: boolean beginRender() { return false; } And the doc is here : http://tapestry.apache.org/tapestry5/tapestry-core

T5 selective rendering

2007-05-25 Thread Janko Muzykant
hi all, is anyone able to give me a hint how could I render only one component from whole the tree of all components that given page consists of? I did such a thing a few month ago for T4 and it worked exactly like this: * there was a Border component wrapping all the children * there was a

Re: T5 selective rendering

2007-05-25 Thread Alexandru Dragomir
As simple as it can get : @Inject private ComponentResources resources; Component setupRender() { return resources.getEmbeddedComponent(yourComponent); } boolean beginRender() { } On 5/25/07, Janko Muzykant [EMAIL PROTECTED] wrote: hi all, is anyone able to give me a hint how could I

Re: T5 selective rendering

2007-05-25 Thread Alexandru Dragomir
sorry , pressed wrong button: boolean beginRender() { return false; } And the doc is here : http://tapestry.apache.org/tapestry5/tapestry-core/guide/rendering.html On 5/25/07, Alexandru Dragomir [EMAIL PROTECTED] wrote: As simple as it can get : @Inject private ComponentResources