Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using a p:dataTable with pagination like so:

<p:dataTable var="user" value="#{userBean.users}" 
   paginator="true" rows="20"  
   paginatorTemplate="{PageLinks}" >

Two questions:

1) Is there a way to tell it to not show the page numbers when there's only one page?

2) When I click from page 1 to page 2, the whole web page refreshes. On the PrimeFaces demo the pagination flips pages with an AJAX-style update. What have I done wrong that the web page is refreshing?

Any help is greatly appreciated, thanks!

rob

share|improve this question

1 Answer

up vote 2 down vote accepted

Try the following for question 1:

paginatorAlwaysVisible="false"

From the primefaces javadoc:

paginatorAlwaysVisible: Defines if paginator should be hidden when number of rows displayed is less than paginator rowsPerPage option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.