Exported Pdf is empty

Stimulsoft Reports.JS discussion
Post Reply
DorsaEslami
Posts: 2
Joined: Thu Apr 09, 2020 7:53 pm

Exported Pdf is empty

Post by DorsaEslami »

Hi.I'm using stimulsoft Designer to create a report and use it in ReactJs .I created a .mrt report using business object and tried to send the data to it by below code(When the user clicks on the "Print" button this code starts running) :
var report = new window.Stimulsoft.Report.StiReport();
report.loadFile("rp_sectionType.mrt");
var dssectionTypeList = new window.Stimulsoft.System.Data.DataSet("sectionTypeList");
//I call an API in ComponentDidMount() and it returns this json data i'm using below.
dssectionTypeList.readJson(this.props.sectionTypeList);
report.regData("sectionTypeList","sectionTypeList",dssectionTypeList);

report.dictionary.synchronize();

report.renderAsync(() => {
report.print();
});

and i added these scripts to my index.html:

<link rel="stylesheet" type="text/css" href="css/stimulsoft.viewer.office2013.whiteblue.css">
<script type="text/javascript" src="scripts/stimulsoft.reports.pack.js"></script>
<script type="text/javascript" src="scripts/stimulsoft.reports.maps.pack.js"></script>

The problem is the exported pdf is a blank page.Could you please help me to know where the problem is?Thanks.
Lech Kulikowski
Posts: 7291
Joined: Tue Mar 20, 2018 5:34 am

Re: Exported Pdf is empty

Post by Lech Kulikowski »

Hello,

Please send us a sample project that reproduces the issue for analysis.

Thank you.
DorsaEslami
Posts: 2
Joined: Thu Apr 09, 2020 7:53 pm

Re: Exported Pdf is empty

Post by DorsaEslami »

Hi.
I worked on my project and right now i have this error : "Unexpected token < in JSON at position 0".
I attached my sample project.
thanks.
Attachments
App.zip
(4.22 MiB) Downloaded 181 times
Lech Kulikowski
Posts: 7291
Joined: Tue Mar 20, 2018 5:34 am

Re: Exported Pdf is empty

Post by Lech Kulikowski »

Hello,

Please send us your request with a detailed description on support@stimulsoft.com.

Thank you.
Post Reply