Each .tml file is basically a component or page. If you want to separate
things into separate .tml files then you need to make separate components.

Assuming your "layout" component is like this

<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
        <head> ... stuff ... </head>

        <t:leftmenu />

        <t:body />

        <t:footer />
</html>

Then you can create a "LeftMenu" and "Footer" component in
<your.app.pakage>.components and separate the bits into different .tml
files matching those.

I'm not sure this is what you want but I hope it helps.

Carl

Alex Florentino wrote:
> How  to make  an "complex" component layout using tapestry5, I read the T5
> begin tutorial and it works fine, but I need create an component layout with
> big left menu and then I would like separate at my layout.tml in various tml
> files such as leftmenu.tml, footer.tml etc..
> 
> how to make it ?
> 
> thanks,
> 
> Alex
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to