as example from running it locally: 
this is when im rendering it as html:

it also seems like its not making the call to the server even, it does when i render it as an html though
candy-man
@candy-man
Posts made by candy-man
-
RE: External images broken in chrome-pdfposted in general forum
-
RE: External images broken in chrome-pdfposted in general forum
have you been able to resolve this? im having the same issue actually. When the output is rendered as html you can see the img but using chrome-pdf it doesn't work
-
Need for rendering same page 2posted in general forum
I have a need where i have to know the exact height of the document. I can only know this when the pages are rendered which is fine, but i also need to set the height of the whole document dynamically then in order for the content to stretch all available pages. Right now im using basically 2 same templates merging them but on the first one im setting visibility
hidden, and on the second, setting body height to something like 100% * number of pages, since 100% references height of one page. Is there a more elegant way of doing this, instead of using 2 separate templates which are basically the same? -
RE: Merge existing pdfs from api call to newly generated pdfposted in general forum
Thank you very much! Worked like a charm
-
RE: Merge existing pdfs from api call to newly generated pdfposted in general forum
My backend is in dotnet and i'm calling RenderByNameAsync() method
-
Merge existing pdfs from api call to newly generated pdfposted in general forum
Is there a way i can send an already generated pdf via post call to jsreport where jsreport can generate a new pdf and merge it with the one that was sent via api?
-
RE: Complex use case access translationsposted in general forum
Amazing thank you! I suppose the resource approach will have to suffice until then.
-
Complex use case access translationsposted in general forum
Im using the complex use case for accessing translations. As i see it the way to access the text you just need to use something like this:
{{translate "text1"}}
The question is how do i access data when i have to access property of an object?
{
"text1: "value1",
"object": {
"text2": "value2"
}
}
How would i access the "text2" value with translate method? -
RE: Set viewport height and viewport width from api call (dotnet)posted in .net sdk forum
This was exactly what was needed! Thank you very much!