Search found 21 matches

by sorinav
Tue Sep 11, 2018 7:37 pm
Forum: Stimulsoft Reports.JS
Topic: Line Spacing is ignored in the Exported PDF
Replies: 1
Views: 838

Line Spacing is ignored in the Exported PDF

When I am using Stimulsoft.Reports.JS to export the report to pdf result = await nodeServices.InvokeAsync<byte[]>("./node/exportPdf", reportPath, reportJson); Line Spacing is ignored in the Exported PDF. This problems is only when I export to pdf from code (when open the report in the view...
by sorinav
Fri Dec 08, 2017 2:38 pm
Forum: Stimulsoft Reports.WEB
Topic: Passing Json strings to report version 2018.1
Replies: 10
Views: 5784

Re: Passing Json strings to report version 2018.1

Aside from the sample project I sent to you here another example: Consider this code: // this part right here simulates loadind the invoice data from the database using (StreamReader r = new StreamReader("Reports/Data/invoice.json")) { invoice_jsondata = r.ReadToEnd(); jsondata = Regex.Rep...
by sorinav
Fri Dec 08, 2017 2:24 pm
Forum: Stimulsoft Reports.WEB
Topic: Passing Json strings to report version 2018.1
Replies: 10
Views: 5784

Re: Passing Json strings to report version 2018.1

Hi, Maybe I was misunderstood but I am not interested in loading a json from a file, I am interested in loading the report from an abject loaded from the database, exactly how I have done it before this release. My entire project is based on this way to load the reports. I really do not know how to ...
by sorinav
Thu Dec 07, 2017 2:04 pm
Forum: Stimulsoft Reports.WEB
Topic: Passing Json strings to report version 2018.1
Replies: 10
Views: 5784

Re: Passing Json strings to report version 2018.1

Hi,

Attached is a modified version of "Show Report in the Viewer" from the sample solution.

Thank you very much!
by sorinav
Wed Dec 06, 2017 8:27 pm
Forum: Stimulsoft Reports.NET
Topic: Format Date doesn't work in Reports.Web.NetCore 2018.1.1
Replies: 1
Views: 871

Format Date doesn't work in Reports.Web.NetCore 2018.1.1

No matter what I chose(including custom) to format the date, Its not working ... It still displaying with the time.

So how you format the date to MM/DD/YYYY

I would appreciate a response. Thank you
by sorinav
Tue Dec 05, 2017 11:32 pm
Forum: Stimulsoft Reports.WEB
Topic: Passing Json strings to report version 2018.1
Replies: 10
Views: 5784

Re: Passing Json strings to report version 2018.1

I also tried to use an object like this: public class InvoiceDto { //public int Id { get; set; } // ID (Primary key) public string OrderNumber { get; set; } public string CustomerID { get; set; } public DateTime? DueDate { get; set; } public DateTime? OrderDate { get; set; } public string Type { get...
by sorinav
Tue Dec 05, 2017 8:23 pm
Forum: Stimulsoft Reports.WEB
Topic: Passing Json strings to report version 2018.1
Replies: 10
Views: 5784

Passing Json strings to report version 2018.1

I need to adapt my project code to the new version 2018.1 of Stimulsoft Reports I am trying to load a json string to the report: report.Load(StiNetCoreHelper.MapPath(this, "~/Content/Reports/Invoice.mrt")); string invoice_jsondata = JsonConvert.SerializeObject(_invoiceDto); // _invoiceDto ...
by sorinav
Fri Dec 01, 2017 3:42 pm
Forum: Stimulsoft Reports.NET
Topic: Error 500 on the production server
Replies: 3
Views: 1830

Re: Error 500 on the production server

Hi, Thank you for your message. Attached is the log file where you can see at the beginning the call to the report. I cannot make sense of what is there. I have tried on 2 servers and is the same ... The only way is working is when I run the project locally. Note: This was paid. Is there any other w...
by sorinav
Mon Nov 27, 2017 4:04 pm
Forum: Stimulsoft Reports.NET
Topic: Error 500 on the production server
Replies: 3
Views: 1830

Error 500 on the production server

Two days ago the reports stop working on the production server with the message: Error connecting to the server: [500] Internal Server Error Nothing was changed on the server, at least nothing that I am aware of(I am the only developer with access on that server) Its working on the development syste...
by sorinav
Wed Sep 06, 2017 2:31 pm
Forum: Stimulsoft Reports.JS
Topic: Image not showing when Export to pdf from Code
Replies: 11
Views: 7953

Re: Image not showing when Export to pdf from Code

Hi, Attached is the project I use.
Thank you very much.