Hello!

I am having an issue with the layout component, following the
layout<http://tapestry.apache.org/tapestry5/guide/layout.html>tutorial
I am unable to get the layout to work.
Layout.tml is in the components subdir, Layout.java is in the component
package, I have a LayoutTest.tml in test package
however the Layout.tml does not show on the page while the page displays
contents. I am also using chenillekit in my
webapp, however not in the LayoutTest.tml.

here are the files:
Layout.tml
------------------
<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";>
     <head>
         <title>Layout</title>
     </head>
     <body>
         <t:body/>
     </body>
 </html>
-----------------
Layout.java
package com.xxx.xxx.xxx.enras.view.components;

public class Layout {

}

-------------------
LayoutTest.tml

<t:layout xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";>
<strong>LAYOUT TEST </strong>
</t:layout>

regards,
Mario Udina

Reply via email to