Search found 10 matches

by chandi
Tue Jun 22, 2021 12:55 pm
Forum: Stimulsoft Reports.JS
Topic: Didn't load all report data once we use manual relationship
Replies: 31
Views: 10014

Didn't load all report data once we use manual relationship

Hi, when I use " report.dictionary.synchronize(); "to automatically create the relationship it's coming records correctly as below. Correct Report preview correct.png but once I create the relationship manually it's not showing all the data correctly. please refer to the below image. we us...
by chandi
Mon May 10, 2021 5:41 am
Forum: Stimulsoft Reports.JS
Topic: Cannot connect using MSSQL connection (getting error as below)
Replies: 5
Views: 3200

Re: Cannot connect using MSSQL connection (getting error as below)

Hi Lech Kulikowski , Thanks for the reply. Basically, I downloaded your sample from here: https://github.com/stimulsoft/Samples-JS I loaded up the ASP.NET solution and ran the "Connect to database" project As I mentioned earlier, I get the below error when I try to set up an MSSQL connecti...
by chandi
Thu May 06, 2021 11:15 am
Forum: Stimulsoft Reports.JS
Topic: Cannot connect using MSSQL connection (getting error as below)
Replies: 5
Views: 3200

Re: Cannot connect using MSSQL connection (getting error as below)

Hi HighAley, Thanks for the reply. I'm getting the below error on the server-side once I Test the Connection. I have the data adaptor which is in samples-JS git repository. I think it's not updated since 2018. Also, I'm not getting any console error msg on the browser. Looking forward to your respon...
by chandi
Wed May 05, 2021 12:08 pm
Forum: Stimulsoft Reports.JS
Topic: Cannot connect using MSSQL connection (getting error as below)
Replies: 5
Views: 3200

Cannot connect using MSSQL connection (getting error as below)

Hi,
Once I'm going to connect to a database using MS SQL, I'm getting the below error message.
error.png
error.png (90.89 KiB) Viewed 3200 times
by chandi
Tue Apr 20, 2021 2:23 am
Forum: Stimulsoft Reports.JS
Topic: How to display hierarchical structure of the JSON in the Dictionary
Replies: 3
Views: 2284

Re: How to display hierarchical structure of the JSON in the Dictionary

Hi Lech,

Thanks for your reply.
Is there anyway to remove "EmployeeDetails_" from child datasource name.
And also how to load data sources like following screen instead of loading data sources for each and every sub objects. I am using JSON file to load data sources.
withsubobjects.PNG
withsubobjects.PNG (13.03 KiB) Viewed 2260 times
by chandi
Mon Apr 19, 2021 12:02 pm
Forum: Stimulsoft Reports.JS
Topic: How to display hierarchical structure of the JSON in the Dictionary
Replies: 3
Views: 2284

How to display hierarchical structure of the JSON in the Dictionary

Please refer the attached screen for my code and .json file. code wit json.png After loaded data sources to the designer it looks like as follows. datasource.png Is there anyway to remove "EmployeeDetails_" from child. And also I want to know how I can add fields from different tables at t...
by chandi
Wed Apr 07, 2021 7:33 am
Forum: Stimulsoft Reports.JS
Topic: Cannot read property 'pageNumbers' of null
Replies: 1
Views: 1867

Cannot read property 'pageNumbers' of null

Hi, I am trying to load existing saved report from JS through MVCWebAPI project. I need to load report design and view in same page. This is my .cshtml page <script type="text/javascript"> var report = new Stimulsoft.Report.StiReport(); report.loadFile("/Reports/SimpleList.mrt");...
by chandi
Sat Apr 03, 2021 1:04 am
Forum: Stimulsoft Reports.JS
Topic: save report in specified location
Replies: 7
Views: 3286

Re: save report in specified location

Hi Lech, Thank you for your response. So this can achieve only on server side. <cc1:StiWebDesigner ID="StiWebDesigner1" runat="server" OnCreateReport="StiWebDesigner1_CreateReport" OnPreviewReport="StiWebDesigner1_PreviewReport" OnSaveReport="StiWebDesign...
by chandi
Fri Apr 02, 2021 12:55 pm
Forum: Stimulsoft Reports.JS
Topic: save report in specified location
Replies: 7
Views: 3286

Re: save report in specified location

Yes...I want to save it client-side in the specified folder path.
From the above way it saved in "Downloads" folder.
I want to save report in given folder path like "C:\\Reports\".

Thank You
by chandi
Thu Apr 01, 2021 4:44 pm
Forum: Stimulsoft Reports.JS
Topic: save report in specified location
Replies: 7
Views: 3286

save report in specified location

I tried to save report as follows. var designer = new Stimulsoft.Designer.StiDesigner(options, "StiDesigner", false); designer.onSaveReport = function (event) { var jsonStr = event.report.saveToJsonString(); console.log("saving a report"); Stimulsoft.System.StiObject.saveAs(jsonS...