How get info in header and footer?
-
I'm trying to get data for my header from data but that data is not being rendered.
In the footer, the pagination doesn't work either.
And I'm also trying to render an image in base64.
Here is the preview link.header
footer
-
https://playground.jsreport.net/w/anon/PVWnfz0~
The
$pdf
is in the root scope, but you are inside a nested with/each which changes the this context.Use
@root.$pdf
for example.
-
Thank you very much, this solved my problem.