Folks,

I am prototyping and want to fill in some navigation points with plain HTML 
within a tml... just for temporary sake. I will eventually get to these 
navigation points and implement some real tapestry.

But I have some html files... that I want to render inside some tab control

So I am using this tab control
<div t:id="tabbedPane" id="tabbedPane" t:type="any"  t:mixins="kawwa2/tabs"  
class="k-tabbed-data">
        <ul class="tabs">
            <li><a href="#tab1">Photo Gallery</a></li>
            <li><a href="#tab2">Schedule</a></li>
            <li><a href="#tab3">Teams</a></li>
            <li><a href="#tab4">Stats</a></li>
            <li><a href="#tab5">Stanley KEG</a></li>
            <li><a href="#tab6">Payment</a></li>
            <li><a href="#tab7">DryLand Conditioning</a></li>
        </ul>

        <div id="tab2" class="content">
            <t:?????/>
        </div>

I have a legacy schedule.html file

is there a tapestry component that will delegate and embed and render my html 
file inside the tab above ?

Something psuedo like this...

<render src="schedule.html"/>

I know its crude but just for proof of concept

Then I could have this...

        <div id="tab2" class="content">
            <t:render src="schedule.html"/>
        </div>

does such a component exist in tapestry?

Just trying to fill in the tabs with some proof of concept stuff too

sorry for such primitive question

kcola...@live.com
 

                                          

Reply via email to