How to access report in html format on webpage
-
Hi,
I want to show html jsreport on web page where we can select value from control and then able to generate report.
I have created demo on link:-https://playground.jsreport.net/studio/workspace/rJYBAJoEb/3
But it's in pdf format when I select "Html with brower client" then Highchart is not working.Can you please suggest me how to show jsreport in html format on webpage where we can change value and generate report.
Why Hightchart is not working with "Html with brower client. I want to show report like this in Html fomat on webpage.Thanks in Advance.
-
hi! your example is not working because when you use the
html
orHtml with brower client
your content is being rendering in the current browser, and currently in your content you are trying to load resources that have URL that starts withhttp://
(for example you have resources that points tohttp://report.valuationtechnology.com/mcr/javascript/bootstrap.min.js
,http://report.valuationtechnology.com/mcr/javascript/highcharts/highchart
) but the jsreport playground site useshttps://
, which means that the browser is blocking your requests because it can't fetchhttp
resources because the main site is usinghttps
.if you open the console of the browser you can see a lot of errors that tells you that request are blocked for that reason.
try to use https for your resources, or use assets to reference the content in the same page
-
Hi,
Thanks for reply!
I have placed all files in assets and give the reference on page.
But no luck.we call api that is SSL enable.
Please have a look and suggest me .
https://playground.jsreport.net/studio/workspace/rJYBAJoEb/15
Thanks in Advance.
-
here you have your template updated https://playground.jsreport.net/studio/workspace/rJYBAJoEb/32 , now the page is loaded but you have some assets that are empty so you just need to update those to have the correct content.
-
Thanks
-
Hi,
I want to show html and pdf version of jsreoprt on other web page and pass these to dynamic parameters through query sting.
Is there is way by which we can achieve this?
Please have a look and suggest me .https://playground.jsreport.net/studio/workspace/BJiPquDLZ/2
Thanks in Advance
-
-
Thanks