haiwan / Exporter

A Vaadin Add-on which exports data (in container) to an excel file
Other
8 stars 31 forks source link

How do you generate pdfs for grid? #11

Closed kalwar closed 9 years ago

kalwar commented 9 years ago

Hi,

Thank you for your great addon. I like this very much. Is there any way you can also generate pdfs for vaadin grid?

M0rfic commented 9 years ago

The PdfExporter constructor accept tables or containers. Thus you can do something like PdfExporter exporter = new PdfExporter(myGrid.getContainerDataSource(), my.getContainerDataSource().getContainerPropertyIds().toArray());. The property IDs are necessary because you'll get a NPE otherwise, probably due to a bug but I did not have the time to investigate myself.

kalwar commented 9 years ago

Thanks... it works. :+1: