Hi, is there any options to get the report in image format instead of pdf but with multiple pages?
dhurbamis
@dhurbamis
Posts made by dhurbamis
-
Multi Pages - Image Recipe
-
RE: How to pass object variable coming from API to JS script
you need to define your function first in the js terminal. Once done, you can call the function by passing the data. for example
function isActive(value){
if(value=='success'){
return "Verified Clear";
}else{
return "Record Not Found";
}
}
for this function, you'll call it by using double curly brackets like below in template
<td style="font-size:12px !important ">{{isActive forms.status}}</td>
here, isActive is the function call and the forms.status is the argument. -
RE: Jsreport Migration from V3 to V4
Since we've the lifetime license, do we need to pay again for upgrade?
-
Jsreport Migration from V3 to V4
Hi, Our organization has the lifetime license of the jsreport. Currently it's running on version: 3.8.0
How do we migrate it to 4.0.0 or 4.4.0. which is the stable version, and what's the procedure for the migration. Please help us to understand is it worth migrating in terms of speed and features.Thank you.
-
Render Multiple Images in DOCX Recipe
Hi, I'm trying to render multiple images in the word docx file which are coming dynamically through my api. How do I render the images? because, If I give any other keys, it says src is required. Please help.
-
html-embedded-in-docx recipe image resizing issue.
Hi, Since our report is dynamic and is not feasible to write the template, We're using html-embedded-in-docx recipe, Everything is working fine but the image resizing is not working with the html css style. What's the solution.