JSF 2.1 + RichFaces 4 rich:dataScroller
I have the following datascroller
<rich:dataScroller for="productsList" id="scroller" maxPages="10">
<f:facet name="next">
<h:outputText value="fist page" />
</f:facet>
<f:facet name="previous">
<h:outputTex开发者_如何学Got value="last page" />
</f:facet>
</rich:dataScroller>
I would like to remove firstPage (>>>>) and lastPage (<<<<) buttons. How can I do it?
fastControls="hide" boundaryControls="hide"
should do it :)
精彩评论