Use components, e.g. splash.tml + Spash.java. So you will have something
like:

<div id="tab0" class="content">
  <t:splash/>
</div>

But the tapestry-way is to create custom component for tab control with
informal block parameters for tab contents:

<t:tabs ...parameters...>
  <p:tab0>
    CONTENT
  </p:tab0>

  <p:tab1>
    CONTENT
  </p:tab1>
</t:tabs>

Or you can use some internal component model as parameter. This model will
include content for each tab and may be some other settings.

On Sun, Feb 24, 2013 at 8:56 PM, Ken in Nashua <kcola...@live.com> wrote:

> Folks,
>
> I am using a tab control.
>
> Some of my logic I isolate to a separate TML
>
> And I ant to render is isolated as such.
>
> Here is my tab construct... psuedo
>
>         <div id="tab0" class="content">
>
>         </div>
>
> Are there constructs in tapestry that will enable me to render my TML file
> inside the div ?
>
> I have a page called Splash.TML
>
> Any help is appreciated
>
> Thanks
>
> Ken
>




-- 
BR
Ivan

Reply via email to