Search found 17 matches

by MichalCh
Mon May 14, 2018 10:53 am
Forum: Stimulsoft Reports.JS
Topic: Stimulsoft nested json values
Replies: 3
Views: 1815

Stimulsoft nested json values

Hi, Unfortunately proper nested objects are still an issue in stimulsoft. We have to manually create relations to each of the fields to have the value instead of auto assignment as is in a .json file. Could you have a look? There is a parent object "main" that has all the fields within. Be...
by MichalCh
Thu May 10, 2018 7:44 pm
Forum: Stimulsoft Reports.NET
Topic: No possibility to create a report based on postgresql
Replies: 9
Views: 6712

No possibility to create a report based on postgresql

Hi, I've connected to postgresql database directly and for schema "public" I can retrieve all the columns. But when I click on "preview" (I do not have to put even any data on the report template) there is an error that sort of "relation" does not exists. I'm attaching ...
by MichalCh
Thu May 10, 2018 7:39 pm
Forum: Stimulsoft Reports.NET
Topic: Connecting database to postgres to different schema then pub
Replies: 5
Views: 2679

Connecting database to postgres to different schema then pub

Hi, We have a postgres database and we have three different schemas. Of course there is also the default one called "public" for all tables for postgres. Unfortunately there is no way to connect to other schema or have some sort of choice. We're always connecting to the "public" ...
by MichalCh
Tue Nov 14, 2017 9:20 am
Forum: Stimulsoft BI Server
Topic: Using Relations with Nested JSON as DataSource
Replies: 12
Views: 24749

Re: Using Relations with Nested JSON as DataSource

Hello, I've had such a situation as well. The ids are the same in such a relation. I've found the issue. The RelationID generated by the Stimulsoft Designer 2017.1.11 [WinForms] are always "0"s that's why the first value is copied. If I open the JS version of the Designer the values are be...
by MichalCh
Mon Nov 13, 2017 9:05 am
Forum: Stimulsoft BI Server
Topic: Using Relations with Nested JSON as DataSource
Replies: 12
Views: 24749

Using Relations with Nested JSON as DataSource

Hello, I'm sorry if it's not the right place to post such a question. I'm trying to do a relations within JSON file in Designer but unfortunately only the first record "get's parsed". Could you please tell me what am I doing wrong in here? I'm passing screenshot as well as .mrt and .json (...
by MichalCh
Mon Nov 06, 2017 7:59 am
Forum: Stimulsoft Reports.NET
Topic: Pass a List of objects in .NET Core to nodejs exportPDF
Replies: 1
Views: 1096

Pass a List of objects in .NET Core to nodejs exportPDF

Hello, I'd like to ask if there is a way to pass in exportPdf/exportHtml a list of objects (might be converted to json by Newtonsoft Json) as datasource instead of a path to saved json file? .NET Core var objects = new List<FancyClass>() { new FancyClass() { Name = "Test One" }, new FancyC...
by MichalCh
Thu Nov 02, 2017 8:03 am
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10652

Re: Generating StiNetCoreViewer from the server and sending

Hello, Great, thank you. I will give it a try. I've updated the nuget package to 2017.2.3 but unfortunately the ServerOptions class is missing the RouteTemplate property. (In StiNetCoreDesignerOptions as well) #region Assembly Stimulsoft.Report.NetCore, Version=2017.2.3.0, Culture=neutral, PublicKey...
by MichalCh
Wed Nov 01, 2017 3:15 pm
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10652

Re: Generating StiNetCoreViewer from the server and sending

Hello, I've found what is the issue debugging the exception itself. The error as stated on top is from GetRequestUrl() method and this method (after a bit of my modifications) looks like: internal static string GetRequestUrl(ActionContext viewContext, string controller, bool relativeUrls, bool passQ...
by MichalCh
Wed Nov 01, 2017 8:54 am
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10652

Re: Generating StiNetCoreViewer from the server and sending

Hello, I've extracted the ViewerEvent(), DesignerEvent() and GetReport() into seperate controller StmController [Route("stm")] public class StmController : Controller { [HttpGet] [Route("getreport", Name = "GetReport")] [ProducesResponseType(typeof(string), 200)] public...
by MichalCh
Fri Oct 27, 2017 10:15 am
Forum: Stimulsoft Reports.NET
Topic: Generating StiNetCoreViewer from the server and sending as s
Replies: 15
Views: 10652

Re: Generating StiNetCoreViewer from the server and sending

Hello, Great, can I get some sort of documentation about jsNetCoreViewer? And perhaps jsNetCoreDesigner since it is exactly the same problem there. The reason I'm asking is we'll need to add extra headers for get requests. But just out of curiosity isn't there a private field/array in js where I can...