Hi,

I could not find with T5 how to use only a part of a component html.

I would like that only the body's component is rendering in the page, but all the html's component is rendered

The component HTML :

<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
<head><title>TheComponent</title></head>
<body>
   <p>Hello !</p>
</body>
</html>

The page HTML :

<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
<head><title>ThePage</title></head>
<body>
<span t:type="TheComponent">Ho!</span>
</body>
</html>

How to get only
   <p>Hello !</p>
of the component ???

Thanks
cyrille


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

Reply via email to