Check out http://myfaces.apache.org.  There is a section on Tiles
support in the "Components" tab.  There are some limitations with
Tiles and JSF but things are going to get better with Tiles becoming a
TLP, increased support in Shale and improvements to the JSF and JSP
specs on the horizon.

sean

On 4/19/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>  
> Hi 
>   
> You have to surround all "pure" html with f:verbatim tags 
>   
> Hermod 
>  
> -----Original Message-----
> From: Claudio Tamietto [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 19, 2005 1:58 PM
> To: myfaces-user@incubator.apache.org
> Subject: tiles support
> 
>  
>  
> is there an effective support for tyles in  myfaces implementation ?. 
> I posted the question because i have the following problem : 
>   
> i have a first jsp page with a lot of html . At some point i include another
> jsp.page 
>   
>                       </TD>
>                      </TR>
>                         <TR>
>                           <TD colSpan=3 height="350" style="padding:1.5pt;">
>                               <f:subview id="login">
>                                 <tiles:insert attribute="content" 
> flush="false" />
>                               </f:subview>
>                     </TD>
>                      </TR>
>  
> the second page follow : 
>   
> <%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f"%>
> <%@ taglib uri="http://java.sun.com/jsf/html"; prefix="h"%>
> <div style="padding:40px;">
>     <table bordercolor="rgb(255,0,0)" align="center" cellpadding="0"
> cellspacing="0" width="40%" border="1">
>       <tr>
>         <td>
>           <table align="center">
>             <tr>
>               <td>
>                 <h1 align="center"
> style="color:rgb(255,0,0);">Login</h1>
>               </td>
>             </tr>
>             <tr>
>               <td style="border-color:rgb(255,0,0);">
>                   <h:outputText value="login mask"></h:outputText>
>               </td>
>             </tr>
>           </table>
>         </td>
>       </tr>
>     </table>
> </div> 
>   
> but the jsf servlet render before the content of the outputText and then the
> html in this way 
>   
>                                 login mask 
>   
> <div style="padding:40px;">
>     <table bordercolor="rgb(255,0,0)" align="center" cellpadding="0"
> cellspacing="0" width="40%" border="1">
>       <tr>
>         <td>
>           <table align="center">
>             <tr>
>               <td>
>                 <h1 align="center"
> style="color:rgb(255,0,0);">Login</h1>
>               </td>
>             </tr>
>             <tr>
>               <td style="border-color:rgb(255,0,0);">
>                   
>               </td>
>             </tr>
>           </table>
>         </td>
>       </tr>
>     </table>
> </div>
>  
> is wrong my code or is a bug ?
>  
>  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>  
>  This email with attachments is solely for the use of the individual or
>  entity to whom it is addressed. Please also be aware that the DnB NOR Group
>  cannot accept any payment orders or other legally binding correspondence
> with
>  customers as a part of an email. 
>  
>  This email message has been virus checked by the virus programs used
>  in the DnB NOR Group.
>  
>  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
>

Reply via email to