Sounds like what you want is a layout component which uses t:body. 

For example:

Layout.tml

<t:jquery.tabs t:listTabData="prop:ALevel" t:activePanelId="aLevelTabsIndex" >
<t:block t:id="tab00">    <!-- begin block tab3 -->
<h3>add INFORMATION description here</h3>
<hr/>             
</t:block>                

<t:block t:id="tab01">
<h3>ROSTERS please select a team</h3>
<hr/>        

<t:body/>
</t:block>

MyPage.tml

<t:layout ...>
     Page content
</t:layout>

This page provides further documentation:

http://tapestry.apache.org/layout-component.html

> From: kcola...@live.com
> To: users@tapestry.apache.org
> Subject: RE: best way to integrate a page or component to keep modular
> Date: Sun, 19 May 2013 21:02:54 -0400
> 
> For instance... given this block of code.. 
> 
>             <t:jquery.tabs t:listTabData="prop:ALevel" 
> t:activePanelId="aLevelTabsIndex" >
>                 <t:block t:id="tab00">    <!-- begin block tab3 -->
>                     <h3>add INFORMATION description here</h3>
>                     <hr/>            
>                 </t:block>                
>                 
>                 <t:block t:id="tab01">
>                     <h3>ROSTERS please select a team</h3>
>                     <hr/>        
> 
>                     <t:renderthispagerighthereinplace page="rosterQueryPage" 
> />
>                 </t:block>
> 
> is there such a component that will do the above 
> renderthispagerighthereinplace
> ?
> 
> Thanks
>                                         
                                          

Reply via email to