You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Dave (JIRA)" <de...@myfaces.apache.org> on 2007/05/04 18:03:15 UTC

[jira] Created: (MYFACES-1623) does not work for html tags around JSF components

<f:verbatim> does not work for html tags around JSF components
--------------------------------------------------------------

                 Key: MYFACES-1623
                 URL: https://issues.apache.org/jira/browse/MYFACES-1623
             Project: MyFaces Core
          Issue Type: Bug
          Components: General
         Environment: XP, JBoss, IE
            Reporter: Dave
             Fix For: 1.1.5


I am trying to put <marquee> tag around a JSF component like <dataTable> using <t:htmlTag>, <f:verbatim> and <h:outputText>, but none of them work. 
 
For example,
 
<f:verbatim><marquee></f:verbatim> 
(JSF component)
<f:verbatim></marquee></f:verbatim>
 
 
<h:outputText value="<marquee>" escape="false/>
(JSF component) 
<h:outputText value="</marquee>" escape="false/>
 
 
<t:htmlTag value="marquee">
(JSF component)
</t:htmlTag>
 

the generated HTML is :
<marquee></marquee>(HTML for JSF component)
 
What should be : 
<marquee> (HTML for JSF component) </marquee>


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.