How to implement subreport feature in jsReports?
-
How to integrate subreport and drilldown functionality in jsreports?
-
If you are looking for drill down in an HTML report, here is the tutorial
https://jsreport.net/learn/live-reportsThe subreports in pdf reports are typically implemented using this extension
https://jsreport.net/learn/child-templates
-
thanks @jan_blaha !
-
I made a test template(invoice) and want to call it from another template by writing this:
<tr>TEST asset link {#child invoice}</tr>
What I'm doing wrong?
-
Is there any way to insert a weblink to the template? So that clicking on a word takes user to another tab and opens a different report?'
A sub-report basically.
-
i think you can open any report in a new tab if you do the following:
//display report in the new tab jsreport.render('_blank', { //...your params here... })
you can call that code on the click handler of a link and you should achieve what you are looking for