> -----Original Message-----
> From: Caroline Jen [mailto:[EMAIL PROTECTED]
> Sent: Thursday, September 02, 2004 11:04 AM
> To: [EMAIL PROTECTED]
> Subject: Tiles in Rows and Columns
> 
> 
> I saw your reply on the [EMAIL PROTECTED]
> forum.  I have three rows.  The second rows has two
> columns.
> 
> I am still very confused.  My code displays every
> single piece of all tiles I have; but, my code does
> not display columns in the second row.  Here is the
> Frame.jsp which defines rows and columns:
> 
> <%@ taglib uri="/tags/struts-tiles" prefix="tiles" %>
> <html:html>
> <HEAD>
> <html:base/>
> 
> <TITLE><bean:message key="app.title"/></TITLE>
> </HEAD>
> <BODY>
> <TABLE>
>    <TR>
        <td colspan="2" align="center">
>       <tiles:get name="upperbar"/>
        </td>
>    </TR>
>    <TR>
>       <TD>
>          <tiles:get name="sidepane"/>
>       </TD>
>       <TD>
>          <tiles:get name="content"/>
>       </TD>
>    </TR>
>    <TR>
        <td colspan="2" align="center">
>       <tiles:get name="lowerbar"/>
        </td>
>    </TR>
> </TABLE>
> </BODY>
> </html:html>
> 
> and my tiles-def.xml looks like:
> 
> <!DOCTYPE tiles-definitions PUBLIC
>        "-//Apache Software Foundation//DTD Tiles
> Configuration//EN"
>       
> "http://jakarta.apache.org/struts/dtds/tiles-config.dtd";>
> 
> <tiles-definitions>
>     <definition name=".frame.Base"
> path="/frame/common/layouts/Frame.jsp">
>       <put name="upperbar" 
> value="/frame/common/upperbar.jsp"/>
>       <put name="sidepane" 
> value="/frame/common/sidepane.jsp"/>
>       <put name="content"   value="${content}"/>
>       <put name="lowerbar" 
> value="/frame/common/lowerbar.jsp"/>
>     </definition>
>     <definition name=".frame.Home"
> extends=".frame.Base">
>       <put name="content"  
> value="/frame/content/home.jsp"/>
>     </definition>
> </tiles-definitions>
> 
> 
>               
> __________________________________
> Do you Yahoo!?
> Yahoo! Mail - 50x more storage than other providers!
> http://promotions.yahoo.com/new_mail
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

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

Reply via email to