I want dynamic html page when I export the Jasper report to html format. To apply Js frameworks to make it dynamic i want to grab the html generated. But the problem is that the html generated is not complete to be applied framework(like Jquery) directly.
I gues there must a html template at the back in which data is filled in Jasper reports. Where can I find that html template in Jasper reports code?
Can I modify the html template?
There is no html template but an exporter configuration for HTML (see here). In order to enrich the exporter with functionality I suggest to develop a custom exporter by extending the existing JRHtmlExporter
. In order to do so you'll need to register an extension point and implement the custom HTML exporter.