[
http://issues.apache.org/jira/browse/MYFACES-1146?page=comments#action_12367159
]
Mario Ivankovits commented on MYFACES-1146:
-------------------------------------------
You could also try to do:
footerClass="#{analyze.footerClass}"
where you return the footer class or a class which will display:hide it.
But ok, this is only a workaround.
The question is still valid, should we add a
renderFooter=true|false
renderHeader=true|false
attribute?
> 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