[ 
http://issues.apache.org/jira/browse/TOMAHAWK-170?page=comments#action_12368468 
] 

Manuel Ohlendorf commented on TOMAHAWK-170:
-------------------------------------------

No, the footer for the whole table. This is the way i use the table:

<t:dataTable 
    id="data" 
    styleClass="table-background" 
    headerClass="header"
    footerClass="header"    
    rowClasses="table-standard-row" 
    rowIndexVar="index"
    columnClasses="table-text"
    var="row" 
    value="#{model}" 
    preserveDataModel = "false" 
    renderedIfEmpty = "false"
    rows="10"    
    sortColumn="#{sortColumn}" 
    sortAscending="#{ascending}"
    preserveSort="true" 
    rowOnClick="fireCommandLink(this,'action');"
    rowOnMouseOver="this.className = 'table-selected-row';" 
    rowOnMouseOut="this.className = 'table-standard-row';"
    >    
   <t:column width="100px">
        <f:facet name="header">
            <t:commandSortHeader columnName="number" arrow="false">
                <h:outputText value="#{lnumberLabel}" />            
                <f:facet name="ascending">
                    <t:graphicImage value="/images/ascending.gif" 
styleClass="sortArrow" rendered="true" border="0"/>
                </f:facet>
                <f:facet name="descending">
                    <t:graphicImage value="/images/descending.gif" 
styleClass="sortArrow" rendered="true" border="0"/>
               </f:facet>
           </t:commandSortHeader>
        </f:facet>
        
        <h:outputText value="#{row.number}" />    
        <t:commandLink id="action" forceId="true" 
action="#{action}"></t:commandLink>  
    </t:column>
     <f:facet name="footer">
            <h:outputText value="(footer table)"  />
      </f:facet>
</t:dataTable>

> The footer facet for the t:dataTable is not rendered
> ----------------------------------------------------
>
>          Key: TOMAHAWK-170
>          URL: http://issues.apache.org/jira/browse/TOMAHAWK-170
>      Project: MyFaces Tomahawk
>         Type: Bug
>   Components: Extended Datatable
>     Versions: 1.1.2-SNAPSHOT
>  Environment: Java 1.4.2
> Tomcat 5.0.19
>     Reporter: Manuel Ohlendorf
>     Assignee: Mario Ivankovits

>
> Hi,
> the footer facet of the table is not rendered. I use only t:column tags with 
> commandSortHeaders  inside the t:dataTable. 
> manu

-- 
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