Not all is rendered in the report

Stimulsoft Ultimate discussion
terje.pedersen
Posts: 80
Joined: Thu Aug 18, 2016 7:29 am

Re: Not all is rendered in the report

Post by terje.pedersen »

Have it been included in 2017.03.18? I just tested with several methods getting data to the report. Using StiJsonToDataSetConverter.GetDataSet() gives the best result so far but still missing data.
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: Not all is rendered in the report

Post by Alex K. »

Hello,

We have made some improvements and fixes in that direction.
Please check the latest build when it will be available.

Thank you.
terje.pedersen
Posts: 80
Joined: Thu Aug 18, 2016 7:29 am

Re: Not all is rendered in the report

Post by terje.pedersen »

Still the same in version 2017.1.0.4 with missing information. :( Only new thing I could see is that is now showing "Trial" even though I downloaded it from a payed account.
trial.png
trial.png (27.53 KiB) Viewed 4384 times
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Not all is rendered in the report

Post by HighAley »

Hello.

We are changing the licensing system of our application and there could be such issues.
Could you specify how do you run the report?
Which our Viewer you use?

Thank you.
terje.pedersen
Posts: 80
Joined: Thu Aug 18, 2016 7:29 am

Re: Not all is rendered in the report

Post by terje.pedersen »

Here are the main lines of code for the export:
data = StiJsonToDataSetConverter.GetDataSet(input)
report.RegData("Data", "Data", data);
service = new StiPdfExportService()
service.ExportTo(report, stream, settings);

In the end base64 encode the stream content and sending it as an attachment in an email so we are not using any viewer at all.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Not all is rendered in the report

Post by HighAley »

Hello.

There is a new activation method of our product.
Please, follow the instruction.
photo_2017-04-06_09-53-39.jpg
photo_2017-04-06_09-53-39.jpg (80.61 KiB) Viewed 4305 times
photo_2017-04-06_09-53-46.jpg
photo_2017-04-06_09-53-46.jpg (98.47 KiB) Viewed 4305 times
Thank you.
terje.pedersen
Posts: 80
Joined: Thu Aug 18, 2016 7:29 am

Re: Not all is rendered in the report

Post by terje.pedersen »

License fixed :)

Still the problem with not all data rendered as reported in january is still not fixed.

We are soon going to launch so I'm in a bit of hurry getting a solution working.
terje.pedersen
Posts: 80
Joined: Thu Aug 18, 2016 7:29 am

Re: Not all is rendered in the report

Post by terje.pedersen »

Almost near a solution :)

using StiJsonToDataSetConverterV2.GetDataSet() which generate table name more like the js version

The designer add fields "relationId" when importing JSON data into the designer but those are not in the our datasource ofcourse. So when I added "relationId": "0" manually to every sub node of json data much more of the data appeared in the report. But still some information is missing.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Not all is rendered in the report

Post by HighAley »

Hello.

Could you send us a sample that will help us to reproduce the issue?

Thank you.
terje.pedersen
Posts: 80
Joined: Thu Aug 18, 2016 7:29 am

Re: Not all is rendered in the report

Post by terje.pedersen »

I have now updated the example code (attached) I sent you earlier in this thread with newest version of Stimulsoft, template and data. I have included both the data as it comes from our system (commented out now in the code) and data modified where I have inserted all the missing "relationId" so it works in generating the pdf.

In our web solution it looks like this:
How it looks like using the same data and template from with the JavaScript version.
How it looks like using the same data and template from with the JavaScript version.
invoice21.how.it.should.look.like.png (40.4 KiB) Viewed 4291 times
In the ultimate version with modfied input data (with added relationId) it looks like this:
Generated version with red boxes where ther is missing information
Generated version with red boxes where ther is missing information
invoice21.geneated.with.red.boxes.png (64.3 KiB) Viewed 4291 times
Post Reply