I have a data table like:
<h:dataTable id="box-score-away" value="#{individualAwayBoxScoreQuery.resultList}" var="_bssl">
<f:facet name="header">
<h:outputText value="Away Team" />
</f:facet>
<h:column>
<f:facet name="header">
<h:outputText value="Name" />
</f:facet>
<h:outputText value="#{_bssl.name}" />
<f:facet name="footer">
<h:outputText value="Σ" styleClass="bold" />
</f:facet>
</h:column>
...
</h:dataTable>
When the result list has no elements, the table's tbody becomes empty. Firefox has problems with that and page rendering is really messed up.
How do I add a line to tbody when the result list is empty? (Note, it's not about the condition but rather the components to use and where to put them.)
The row is supposed to be a td with a colspan of 10. I tried a few things without success. Is f:verbatim the way to go?