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 <p:dataTable> of PrimeFaces 3.3.1 with pagination. The pagination buttons appear in both the table header and footer. I would like to hide the pagination buttons in the table header and keep the ones in the table footer. How can I achieve this?

share|improve this question

1 Answer

up vote 7 down vote accepted

According to the PrimeFaces Users Guide and the <p:dataTable> VDL Documentation, there's a paginatorPosition attribute which can take a value of both (default), top or bottom.

So just set paginatorPosition attribute to bottom.

<p:dataTable ... paginatorPosition="bottom">
share|improve this answer
Thanks @BalusC so much, i like you hehe! Dear, pls help me at link [link]stackoverflow.com/questions/11807191/remove-an-item-from-map and [link]stackoverflow.com/questions/11806608/… – Phúc Aug 5 '12 at 2:28
You're welcome. Since you're new here, please don't forget to mark the answer accepted whenever it helped (most) in solving the concrete problem. See also How does accepting an answer work? – BalusC Aug 5 '12 at 2:46

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.