all, i have a problem with this simple myTest.xhtml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<t:document xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:t="http://myfaces.apache.org/tomahawk">
<h:outputText value="Test H"/>
<t:outputText value="Test T"/>
</t:document>
It happens that it produces only one line with Test H
Looking at the page source:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
<t:document xmlns="http://www.w3.org/1999/xhtml"
xmlns:t="http://myfaces.apache.org/tomahawk">Test H
<t:outputText value="Test T"></t:outputText>
</t:document>
I am sure there are all the lib etc and that the tomahawk.taglib.xml is in
the WEB-INF folder, it contains
<tag>
<tag-name>outputText</tag-name>
<component>
<component-type>org.apache.myfaces.HtmlOutputText</component-type>
<renderer-type>org.apache.myfaces.Text</renderer-type>
</component>
</tag>
that web.xml contains
<context-param>
<param-name>facelets.LIBRARIES</param-name>
<param-value>/WEB-INF/tomahawk.taglib.xml</param-value>
</context-param>
What else can i check?
(i mean, no other t: tag works...)
Paolo
--
View this message in context:
http://www.nabble.com/facelets-tomahawk-tag-issue-tp16734149p16734149.html
Sent from the MyFaces - Users mailing list archive at Nabble.com.