Hi all,
Anyone know how I can render the page index and the navigation bar
(f:facet first, next, prev, ecc.) in the same row?
My jsp code is:
<x:dataScroller for="datatable" pageCountVar="pageCount"
pageIndexVar="pageIndex">
<x:outputText value="Page #{pageIndex} of #{pageCount}"/>
<f:facet name="first">
<x:graphicImage url="first.gif" title="First page"/>
</f:facet>
<f:facet name="last">
<x:graphicImage url="last.gif" title="Last page"/>
</f:facet>
<f:facet name="previous">
<x:graphicImage url="previous.gif" title="Previous page"/>
</f:facet>
<f:facet name="next">
<x:graphicImage url="next.gif" title="Next page"/>
</f:facet>
</x:dataScroller>
The component renders the page index and the facets in two different rows.
Regard
Nicola