posted 14 years ago
I wanna a datatable has two footer rows, I tried the way as following, but it doesn't work.
<rich:dataTable......
><rich:columns>
<f:facet name="footer">
<h:outputText value="#{a.A}" />
</f:facet>
<h:outputText value="#{a.B}" />
</rich:columns>
<rich:column>
<f:facet name="footer">
<h:outputText value="#{a.X}" />
</f:facet>
<f:facet name="footer">
<h:outputText value="#{a.Y}" />
</f:facet>
</rich:column>
</rich:dataTable>
Do you have any thoughts? thanks in advance.