Good morning, I need implement "p:dataExporter" of primefaces in bootfaces but i think that bootfaces cant implement this functionality. I only need export datas of my b:dataTables to Excels (CSV).
Is it possible to perform this functionality? In PrimeFaces is implemented as follows:
<p:dataTable id="tbl" var="car" value="#{dataExporterView.cars}"
paginatorTemplate="{CurrentPageReport} {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {Exporters}"
paginator="true" rows="10" style="margin-bottom:20px">
<p:dataExporter type="csv" target="tbl" fileName="cars" pageOnly="true" />
Thanks so much.