[ 
http://issues.apache.org/jira/browse/MYFACES-1146?page=comments#action_12367158 
] 

Guy Bashan commented on MYFACES-1146:
-------------------------------------

This is exactly what I did (well . . .   in one of my tryings . . . .).

MyFaces still creates an empty row (footer row). This row has no values, so it 
is not shown in explorer, but fire fox treats empty rows differently and still 
shows the empty row.

> Impossible to hide footer in dataTable
> --------------------------------------
>
>          Key: MYFACES-1146
>          URL: http://issues.apache.org/jira/browse/MYFACES-1146
>      Project: MyFaces Core
>         Type: Bug
>   Components: Tomahawk
>     Versions: 1.1.1
>     Reporter: Guy Bashan
>     Priority: Trivial

>
> It is impossible to hide the footer in a dataTable. There are cases in which 
> the same table should sometimes show the footer and in other cases do not 
> show it. For example:
>           <t:dataTable id="results" value="#{analyze.rows}" var="row"
>                        width="100%" 
>                        cellpadding="0" 
>                        cellspacing="0" 
>                        border="0"
>                        styleClass="reportTable" 
>                        headerClass="reportTitle"
>                        footerClass="reportTableTotal"
>                        rowClasses="reportRowLight,reportRowDark"
>                        rowOnMouseOver="selectedRow = this.className; 
> this.className='reportRowOver'"
>                        rowOnMouseOut="this.className = selectedRow">
>             <t:columns value="#{analyze.columnHeaders}" var="column"
>                        styleClass="#{analyze.styleClass}" 
> style="text-align:#{column.alignment}">
>               <f:facet name="header">
>                 <t:htmlTag value="nobr"><h:outputText value="#{column.title}" 
> escape="false"/></t:htmlTag>
>               </f:facet>
>               <h:outputText value="#{analyze.columnValue}" escape="false" />
>               
>               <f:facet name="footer">
>                   <h:outputText value="#{analyze.colFooter.title}" 
> escape="false"/>
>                   <t:htmlTag value="b">
>                     <h:outputText value="#{analyze.colFooter.total}"/>
>                   </t:htmlTag>
>               </f:facet>            
>             </t:columns>
>           </t:dataTable>
> I tried hiding the footer with: f:subview wrapping the footer and as a footer 
> child, but both seems to be not working.

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