Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
PrimeFaces Beginner's Guide

You're reading from  PrimeFaces Beginner's Guide

Product type Book
Published in Nov 2013
Publisher Packt
ISBN-13 9781783280698
Pages 378 pages
Edition 1st Edition
Languages
Author (1):
Siva Prasad Reddy Katamreddy Siva Prasad Reddy Katamreddy
Profile icon Siva Prasad Reddy Katamreddy

Table of Contents (20) Chapters

PrimeFaces Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Introduction to PrimeFaces 2. Introducing Sample Application TechBuzz 3. Using PrimeFaces Common Utility Components 4. Introducing the PrimeFaces Client Side Validation Framework 5. Introducing Text Input Components 6. Working with Selection Input Components 7. Introducing Advanced Input Components 8. Working with Data Components 9. Introducing Advanced Data Visualization Components 10. Working with Layout Components 11. Introducing Navigation Components 12. Drawing Charts 13. Using PrimeFaces Themes Index

Time for action – using DataExporter to export data into XLS and PDF formats


Let us see how we can use various features of DataExporter, such as exporting a whole dataset, exporting the only current page, and excluding some columns:

  1. Create a DataTable and a DataExporter component to export all the data, only page data, and register pre- and post-processors for XLS and PDF exporters:

    <p:dataTable id="usersTbl" var="user" value="#{adminController.users}" rowKey="#{user.id}"  paginator="true" rows="10">  
    
      <p:column headerText="Id"> 
        <f:facet name="header">  
          <h:outputText value="Id" />  
        </f:facet> 
        <h:outputText value="#{user.id}" />  
      </p:column>  
    
      <p:column>  
        <f:facet name="header">  
          <h:outputText value="Email" />  
        </f:facet>
        <h:outputText value="#{user.emailId}" />  
      </p:column>  
    
      <p:column exportable="false"> 
        <f:facet name="header">  
          &lt...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at £13.99/month. Cancel anytime}