you can also use this template code:

<html xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";>
<body>
<t:content>
   <h2>I am a menubar</h2>
</t:content>
</body>
</html>

the <t:content> let tapestry know, that all code between <t:content>
and </t:content>
is relevant for your component and strips all away outside this tag.

it is the better way, if you use design tools like dreamweaver or others

with regards
Sven Homburg
Founder of the Chenille Kit Project
http://chenillekit.codehaus.org





2010/11/6 Josh Kamau <joshnet2...@gmail.com>:
> thanks Thiago,
>
> I have fixed the component as follows :
>
> <t:menubar xmlns:t="http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";>
>    <h2>I am a menubar</h2>
> </t:menubar>
>
> now how do i add it to my page? i have added it by putting <t:menubar/> or
> <div t:type="menubar"/> and its not appearing.
>
> this is my index page.
>
> <html t:type="layout" xmlns:t="
> http://tapestry.apache.org/schema/tapestry_5_1_0.xsd";>
>
>    <head>
>
>    </head>
>
>    <body>
>        <h1>Hello world . Its now ${today}</h1>
>        <t:menubar/>
>    </body>
> </html>
>
> On Sat, Nov 6, 2010 at 6:41 AM, Thiago H. de Paula Figueiredo <
> thiag...@gmail.com> wrote:
>
>> On Sat, 06 Nov 2010 08:36:40 -0200, Josh Kamau <joshnet2...@gmail.com>
>> wrote:
>>
>>  Hi guys;
>>>
>>
>> Hi!
>>
>> Don't use the <html> tag in components' templates (unless you're creating a
>> Layout-style one).
>> And don't forget that the name of the template is case-sensitive, so
>> MenuBar.java -> MenuBar.tml.
>>
>> --
>> Thiago H. de Paula Figueiredo
>> Independent Java, Apache Tapestry 5 and Hibernate consultant, developer,
>> and instructor
>> Owner, Ars Machina Tecnologia da Informação Ltda.
>> http://www.arsmachina.com.br
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>>
>>
>

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

Reply via email to