I'm trying to display text next to the dataScroller that displays something like "Display 1 to 15 of 123 Results" I've come up with the following:
...
<f:facet name="footer">
<h:panelGrid id="test1" columns="2">
<rich:datascroller id="dataScroller" for="dataTable" maxPages="#{app.pagination_maxPages}" />
<a4j:form >
<h:outputText style="font-size:10px; align:left;" value="#{paginationUtil.paginationLocation}" />
</a4j:form>
</h:panelGrid>
</f:facet>
</rich:dataTable>