Any tutorial on integrating SmartGWT and JasperReports?

I need to integrate reports into my GWT / SmartGWT web application. I have not found a tutorial that could help me integrate SmartGWT and Jasper reports, so I'm interested in whether this is possible at all.

Please respond if you have information on this topic.

+4
source share
1 answer

You will not find any PDF libraries or reports that will work on the client side with GWT. The fact is that all the processing for creating a report and sending it back to the browser must be performed on the server. It’s best to try to check something like this and learn from the code. Although this specific example is for iText, the concepts are exactly the same. This is about the best that you are going to get until someone decides to release a version of the PDF library in GWT format.

In the end, perhaps the guys from iText or JasperSoft will decide to make a GWT wrapper for their libraries, but the truth is that it will (more or less) be the same as the link above. Maybe a little more integrated with GWT.

+1
source

Source: https://habr.com/ru/post/1386284/


All Articles