You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Ruben Lopez (JIRA)" <de...@myfaces.apache.org> on 2008/05/20 12:28:55 UTC

[jira] Created: (TRINIDAD-1084) The footer facet of tr:column doesn't work with grouped columns

The footer facet of tr:column doesn't work with grouped columns
---------------------------------------------------------------

                 Key: TRINIDAD-1084
                 URL: https://issues.apache.org/jira/browse/TRINIDAD-1084
             Project: MyFaces Trinidad
          Issue Type: Bug
          Components: Components
    Affects Versions: 1.0.7-core
         Environment: Fedora Core 5, kernel 2.6.20-1.2319.fc5smp
Intel(R) Pentium(R) 4 CPU 3.60GHz (hyperthreading)
myfaces-impl-1.1.5.jar
trinidad-impl-1.0.7.jar
tomahawk-1.1.6.jar
java-1.5.0

            Reporter: Ruben Lopez


When I try to set a footer for a group of tr:column's the footer for the grouped column stays empty with a gray background.
The header works as expected though, and I can have nested headers on nested columns.

Code:

<tr:table var="row" value="#{myBean.employees}">
    <tr:column>
      <f:facet name="footer">
        <tr:outputText value="Group footer"/>
      </f:facet>
      <tr:column>
        <tr:outputText value="#{row.firstname}"/>
      </tr:column>
      <tr:column>
        tr:outputText value="#{row.lastname}"/>
      </tr:column>
    </tr:column>
  </tr:table>

Thanks in advance.


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