EXCEL, PDF, CSV and XML are the supported formats. The TreeTable columns content will be justified as left aligned, center aligned and right aligned based on the content type. If a style or styleClass contains the word "right" the cell will be right aligned in the Excel/PDF output.
<div class="card">
<h:form id="form">
<div class="flex justify-content-between">
<div>
<h5>Standard</h5>
<p:commandButton value="XLS" styleClass="mr-2 mb-2">
<p:dataExporter type="xls" target="tbl" fileName="documents"/>
</p:commandButton>
<p:commandButton value="XLSX" styleClass="mr-2 mb-2">
<p:dataExporter type="xlsxstream" target="tbl" fileName="documents"/>
</p:commandButton>
<p:commandButton value="PDF" styleClass="mr-2 mb-2">
<p:dataExporter type="pdf" target="tbl" fileName="documents"/>
</p:commandButton>
<p:commandButton value="CSV" styleClass="mr-2 mb-2">
<p:dataExporter type="csv" target="tbl" fileName="documents" />
</p:commandButton>
<p:commandButton value="XML" styleClass="mr-2 mb-2">
<p:dataExporter type="xml" target="tbl" fileName="documents"/>
</p:commandButton>
</div>
<div>
<h5>Page Only</h5>
<p:commandButton value="XLS" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="xls" target="tbl" fileName="documents" pageOnly="true"/>
</p:commandButton>
<p:commandButton value="XLSX" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="xlsxstream" target="tbl" fileName="documents" pageOnly="true"/>
</p:commandButton>
<p:commandButton value="PDF" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="pdf" target="tbl" fileName="documents" pageOnly="true"/>
</p:commandButton>
<p:commandButton value="CSV" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="csv" target="tbl" fileName="documents" pageOnly="true"/>
</p:commandButton>
<p:commandButton value="XML" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="xml" target="tbl" fileName="documents" pageOnly="true"/>
</p:commandButton>
</div>
<div>
<h5>Selection Only</h5>
<p:commandButton value="XLS" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="xls" target="tbl" fileName="documents" selectionOnly="true"/>
</p:commandButton>
<p:commandButton value="XLSX" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="xlsxstream" target="tbl" fileName="documents" selectionOnly="true"/>
</p:commandButton>
<p:commandButton value="PDF" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="pdf" target="tbl" fileName="documents" selectionOnly="true"/>
</p:commandButton>
<p:commandButton value="CSV" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="csv" target="tbl" fileName="documents" selectionOnly="true"/>
</p:commandButton>
<p:commandButton value="XML" styleClass="mr-2 mb-2 ui-button-outlined">
<p:dataExporter type="xml" target="tbl" fileName="documents" selectionOnly="true"/>
</p:commandButton>
</div>
</div>
<p:treeTable id="tbl" value="#{ttBasicView.root}" var="document" paginator="true" rows="5"
selection="#{ttBasicView.multipleSelectedDocuments}"
selectionMode="checkbox">
<p:column headerText="Name">
<h:outputText value="#{document.name}"/>
</p:column>
<p:column headerText="Size" >
<h:outputText value="#{document.size}"/>
</p:column>
<p:column headerText="Type" >
<h:outputText value="#{document.type}"/>
</p:column>
</p:treeTable>
</h:form>
</div>
@Named("ttBasicView")
@ViewScoped
public class BasicView implements Serializable {
private TreeNode<Document> root;
private List<SortMeta> sortBy;
private Document selectedDocument;
@Inject
private DocumentService service;
private List<Document> multipleSelectedDocuments;
@PostConstruct
public void init() {
root = service.createDocuments();
sortBy = new ArrayList<>();
sortBy.add(SortMeta.builder()
.field("name")
.order(SortOrder.ASCENDING)
.build());
}
public TreeNode<Document> getRoot() {
return root;
}
public void setService(DocumentService service) {
this.service = service;
}
public Document getSelectedDocument() {
return selectedDocument;
}
public void setSelectedDocument(Document selectedDocument) {
this.selectedDocument = selectedDocument;
}
public List<SortMeta> getSortBy() {
return sortBy;
}
public List<Document> getMultipleSelectedDocuments() {
return multipleSelectedDocuments;
}
public void setMultipleSelectedDocuments(List<Document> multipleSelectedDocuments) {
this.multipleSelectedDocuments = multipleSelectedDocuments;
}
}
public class Document implements Serializable, Comparable<Document> {
private String name;
private String size;
private String type;
public Document(String name, String size, String type) {
this.name = name;
this.size = size;
this.type = type;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSize() {
return size;
}
public void setSize(String size) {
this.size = size;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
//Eclipse Generated hashCode and equals
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result + ((size == null) ? 0 : size.hashCode());
result = prime * result + ((type == null) ? 0 : type.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
Document other = (Document) obj;
if (name == null) {
if (other.name != null) {
return false;
}
}
else if (!name.equals(other.name)) {
return false;
}
if (size == null) {
if (other.size != null) {
return false;
}
}
else if (!size.equals(other.size)) {
return false;
}
if (type == null) {
if (other.type != null) {
return false;
}
}
else if (!type.equals(other.type)) {
return false;
}
return true;
}
@Override
public String toString() {
return name;
}
public int compareTo(Document document) {
return this.getName().compareTo(document.getName());
}
}
@Named
@ApplicationScoped
public class DocumentService {
public TreeNode<Document> createDocuments() {
TreeNode<Document> root = new DefaultTreeNode(new Document("Files", "-", "Folder"), null);
TreeNode applications = new DefaultTreeNode(new Document("Applications", "100kb", "Folder"), root);
TreeNode cloud = new DefaultTreeNode(new Document("Cloud", "20kb", "Folder"), root);
TreeNode desktop = new DefaultTreeNode(new Document("Desktop", "150kb", "Folder"), root);
TreeNode documents = new DefaultTreeNode(new Document("Documents", "75kb", "Folder"), root);
TreeNode downloads = new DefaultTreeNode(new Document("Downloads", "25kb", "Folder"), root);
TreeNode main = new DefaultTreeNode(new Document("Main", "50kb", "Folder"), root);
TreeNode other = new DefaultTreeNode(new Document("Other", "5kb", "Folder"), root);
TreeNode pictures = new DefaultTreeNode(new Document("Pictures", "150kb", "Folder"), root);
TreeNode videos = new DefaultTreeNode(new Document("Videos", "1500kb", "Folder"), root);
//Applications
TreeNode primeface = new DefaultTreeNode(new Document("Primefaces", "25kb", "Folder"), applications);
TreeNode primefacesapp = new DefaultTreeNode("app", new Document("primefaces.app", "10kb", "Application"), primeface);
TreeNode nativeapp = new DefaultTreeNode("app", new Document("native.app", "10kb", "Application"), primeface);
TreeNode mobileapp = new DefaultTreeNode("app", new Document("mobile.app", "5kb", "Application"), primeface);
TreeNode editorapp = new DefaultTreeNode("app", new Document("editor.app", "25kb", "Application"), applications);
TreeNode settingsapp = new DefaultTreeNode("app", new Document("settings.app", "50kb", "Application"), applications);
//Cloud
TreeNode backup1 = new DefaultTreeNode("document", new Document("backup-1.zip", "10kb", "Zip"), cloud);
TreeNode backup2 = new DefaultTreeNode("document", new Document("backup-2.zip", "10kb", "Zip"), cloud);
//Desktop
TreeNode note1 = new DefaultTreeNode("document", new Document("note-meeting.txt", "50kb", "Text"), desktop);
TreeNode note2 = new DefaultTreeNode("document", new Document("note-todo.txt", "100kb", "Text"), desktop);
//Documents
TreeNode work = new DefaultTreeNode(new Document("Work", "55kb", "Folder"), documents);
TreeNode expenses = new DefaultTreeNode("document", new Document("Expenses.doc", "30kb", "Document"), work);
TreeNode resume = new DefaultTreeNode("document", new Document("Resume.doc", "25kb", "Resume"), work);
TreeNode home = new DefaultTreeNode(new Document("Home", "20kb", "Folder"), documents);
TreeNode invoices = new DefaultTreeNode("excel", new Document("Invoice.xsl", "20kb", "Excel"), home);
//Downloads
TreeNode spanish = new DefaultTreeNode(new Document("Spanish", "10kb", "Folder"), downloads);
TreeNode tutorial1 = new DefaultTreeNode("document", new Document("tutorial-a1.txt", "5kb", "Text"), spanish);
TreeNode tutorial2 = new DefaultTreeNode("document", new Document("tutorial-a2.txt", "5kb", "Text"), spanish);
TreeNode travel = new DefaultTreeNode(new Document("Travel", "15kb", "Folder"), downloads);
TreeNode hotelpdf = new DefaultTreeNode("travel", new Document("Hotel.pdf", "10kb", "PDF"), travel);
TreeNode flightpdf = new DefaultTreeNode("travel", new Document("Flight.pdf", "5kb", "PDF"), travel);
//Main
TreeNode bin = new DefaultTreeNode("document", new Document("bin", "50kb", "Link"), main);
TreeNode etc = new DefaultTreeNode("document", new Document("etc", "100kb", "Link"), main);
TreeNode var = new DefaultTreeNode("document", new Document("var", "100kb", "Link"), main);
//Other
TreeNode todotxt = new DefaultTreeNode("document", new Document("todo.txt", "3kb", "Text"), other);
TreeNode logopng = new DefaultTreeNode("picture", new Document("logo.png", "2kb", "Picture"), other);
//Pictures
TreeNode barcelona = new DefaultTreeNode("picture", new Document("barcelona.jpg", "90kb", "Picture"), pictures);
TreeNode primeng = new DefaultTreeNode("picture", new Document("primefaces.png", "30kb", "Picture"), pictures);
TreeNode prime = new DefaultTreeNode("picture", new Document("prime.jpg", "30kb", "Picture"), pictures);
//Videos
TreeNode primefacesmkv = new DefaultTreeNode("video", new Document("primefaces.mkv", "1000kb", "Video"), videos);
TreeNode introavi = new DefaultTreeNode("video", new Document("intro.avi", "500kb", "Video"), videos);
return root;
}
public TreeNode<Document> createCheckboxDocuments() {
TreeNode<Document> root = new CheckboxTreeNode(new Document("Files", "-", "Folder"), null);
TreeNode applications = new CheckboxTreeNode(new Document("Applications", "100kb", "Folder"), root);
TreeNode cloud = new CheckboxTreeNode(new Document("Cloud", "20kb", "Folder"), root);
TreeNode desktop = new CheckboxTreeNode(new Document("Desktop", "150kb", "Folder"), root);
TreeNode documents = new CheckboxTreeNode(new Document("Documents", "75kb", "Folder"), root);
TreeNode downloads = new CheckboxTreeNode(new Document("Downloads", "25kb", "Folder"), root);
TreeNode main = new CheckboxTreeNode(new Document("Main", "50kb", "Folder"), root);
TreeNode other = new CheckboxTreeNode(new Document("Other", "5kb", "Folder"), root);
TreeNode pictures = new CheckboxTreeNode(new Document("Pictures", "150kb", "Folder"), root);
TreeNode videos = new CheckboxTreeNode(new Document("Videos", "1500kb", "Folder"), root);
//Applications
TreeNode primeface = new CheckboxTreeNode(new Document("Primefaces", "25kb", "Folder"), applications);
TreeNode primefacesapp = new CheckboxTreeNode("app", new Document("primefaces.app", "10kb", "Application"), primeface);
TreeNode nativeapp = new CheckboxTreeNode("app", new Document("native.app", "10kb", "Application"), primeface);
TreeNode mobileapp = new CheckboxTreeNode("app", new Document("mobile.app", "5kb", "Application"), primeface);
TreeNode editorapp = new CheckboxTreeNode("app", new Document("editor.app", "25kb", "Application"), applications);
TreeNode settingsapp = new CheckboxTreeNode("app", new Document("settings.app", "50kb", "Application"), applications);
//Cloud
TreeNode backup1 = new CheckboxTreeNode("document", new Document("backup-1.zip", "10kb", "Zip"), cloud);
TreeNode backup2 = new CheckboxTreeNode("document", new Document("backup-2.zip", "10kb", "Zip"), cloud);
//Desktop
TreeNode note1 = new CheckboxTreeNode("document", new Document("note-meeting.txt", "50kb", "Text"), desktop);
TreeNode note2 = new CheckboxTreeNode("document", new Document("note-todo.txt", "100kb", "Text"), desktop);
//Documents
TreeNode work = new CheckboxTreeNode(new Document("Work", "55kb", "Folder"), documents);
TreeNode expenses = new CheckboxTreeNode("document", new Document("Expenses.doc", "30kb", "Document"), work);
TreeNode resume = new CheckboxTreeNode("document", new Document("Resume.doc", "25kb", "Resume"), work);
TreeNode home = new CheckboxTreeNode(new Document("Home", "20kb", "Folder"), documents);
TreeNode invoices = new CheckboxTreeNode("excel", new Document("Invoice.xsl", "20kb", "Excel"), home);
//Downloads
TreeNode spanish = new CheckboxTreeNode(new Document("Spanish", "10kb", "Folder"), downloads);
TreeNode tutorial1 = new CheckboxTreeNode("document", new Document("tutorial-a1.txt", "5kb", "Text"), spanish);
TreeNode tutorial2 = new CheckboxTreeNode("document", new Document("tutorial-a2.txt", "5kb", "Text"), spanish);
TreeNode travel = new CheckboxTreeNode(new Document("Travel", "15kb", "Folder"), downloads);
TreeNode hotelpdf = new CheckboxTreeNode("travel", new Document("Hotel.pdf", "10kb", "PDF"), travel);
TreeNode flightpdf = new CheckboxTreeNode("travel", new Document("Flight.pdf", "5kb", "PDF"), travel);
//Main
TreeNode bin = new CheckboxTreeNode("document", new Document("bin", "50kb", "Link"), main);
TreeNode etc = new CheckboxTreeNode("document", new Document("etc", "100kb", "Link"), main);
TreeNode var = new CheckboxTreeNode("document", new Document("var", "100kb", "Link"), main);
//Other
TreeNode todotxt = new CheckboxTreeNode("document", new Document("todo.txt", "3kb", "Text"), other);
TreeNode logopng = new CheckboxTreeNode("picture", new Document("logo.png", "2kb", "Picture"), other);
//Pictures
TreeNode barcelona = new CheckboxTreeNode("picture", new Document("barcelona.jpg", "90kb", "Picture"), pictures);
TreeNode primeng = new CheckboxTreeNode("picture", new Document("primefaces.png", "30kb", "Picture"), pictures);
TreeNode prime = new CheckboxTreeNode("picture", new Document("prime.jpg", "30kb", "Picture"), pictures);
//Videos
TreeNode primefacesmkv = new CheckboxTreeNode("video", new Document("primefaces.mkv", "1000kb", "Video"), videos);
TreeNode introavi = new CheckboxTreeNode("video", new Document("intro.avi", "500kb", "Video"), videos);
return root;
}
}