Is it possible to nested normal jsp/html content into one layout component region?

for example, replace "content" region with jsp content when one jsp request is lanched.

<body>
<table id="main" width="100%" height="100%" border="0">
  <tr>
    <td id="header" height="94" colspan="3">
        <div t:type="header"/>
    </td>
  </tr>
  <tr>
    <td id="navigator">
        <div t:id="treebox" t:type="t5/SidePanel" style="height:600px">
                <div t:type="xtree"/>           
        </div>
    </td>
    <td width="2">
        <div id="split"/>
    </td>
    <td id="content">
        <t:body/>
    </td>
  </tr>
  <tr>
    <td id ="footer"  height="90" colspan="3">
        <div t:type="footer"/>
    </td>
  </tr>
</table>
</body>

If it possible, how to do it? any idea or suggestion is appreciate.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to