<f:facet> with multiple <h:outputText> which reference beans is not working
---------------------------------------------------------------------------

                 Key: MYFACES-1395
                 URL: http://issues.apache.org/jira/browse/MYFACES-1395
             Project: MyFaces Core
          Issue Type: Bug
    Affects Versions: 1.1.5-SNAPSHOT
         Environment: myfaces 1.1.5, tomahawk 1.1.5 as well as facelets
            Reporter: Martin Klewitz


Children of h:panelgroup within a f:facet that access bean properties are not 
evaluated. Only the static text within OutputText elements is evaluated: see 
below:

<h:dataTable value="#{ContentAction.contentDescriptor.profiles}"
        var="profile" styleClass="profileTable">
        <h:column>
                
                <f:facet name="header">
                <h:panelGroup>
                <h:outputText value="Profil ID" />:<h:outputText
                        value="#{profile.ID}" />
                        <h:outputText value="of this profile has ID:" />
                        <h:outputText
                        value="#{profile.ID}" />
                </h:panelGroup>
                </f:facet>
.....

produces the result:

Profil ID:of this profile has ID:

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to