0

Is it possible to hide the page numbers shown by the rich:dataScroller?

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Anubhav Ranjan
  • 1,558
  • 3
  • 18
  • 32

1 Answers1

1

yes you can use the pages facet for the datascroller which replaces the default page numbers controls

<rich:datascroller>
  <f:facet name="pages">
    <h:outputText value=""/>
  </facet>
</rich:datascroller>
Ross
  • 3,008
  • 1
  • 22
  • 27
  • 1
    it works for me. as long as you put something in the pages facet --- see my updated answer. What version of RF are you using? In RF4 there is a reported issue: https://issues.jboss.org/browse/RF-8701 – Ross Oct 10 '11 at 09:58