You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Patrick Casey <pa...@adelphia.net> on 2005/05/10 03:35:49 UTC

How to programatically embed one component in another component

 

            I have a pair of customer components. During the course of
rendering one of them, I want to embed the rendered result of the other one
e.g.

 

            Writer.begin("tr");

            Writer.begin("td");

            // sub-component goes here

            Writer.end("td");

            Writer.end("tr);

 

            Can somebody help out with what code goes in the middle there to
actually get the component, pass it parameters, and render it?

 

            Thanks,

 

            -- Pat