Data dictionary not displayed bug

Stimulsoft Reports.WEB discussion
Post Reply
FrenkR
Posts: 131
Joined: Mon Jan 05, 2015 12:15 am

Data dictionary not displayed bug

Post by FrenkR »

I've added connection on a StiReport via command in a dictionary databases

Code: Select all

report.Dictionary.Databases.Add(new StiSqlDatabase(connName, connName, connString, false));
with latest patch(2015.3.5+ fix from this monday), "Data sources" treeview is empty. I checked "report.Dictionary.Databases" and there is connection specified. This worked before this latest patch.
ssEmptyDS.png
ssEmptyDS.png (8.12 KiB) Viewed 1607 times
A sample report template with connection that doesn't show connection in a datasources is attached too.
Attachments
List.mrt
(7.83 KiB) Downloaded 216 times
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Data dictionary not displayed bug

Post by HighAley »

Hello, Frenk.

Sorry, but we couldn't reproduce your issue.
We tried ASP.NET HTML5 Designer and ASP.NET MVC HTML5 Designer.
Could you specify which our Designer you use?

Thank you.
FrenkR
Posts: 131
Joined: Mon Jan 05, 2015 12:15 am

Re: Data dictionary not displayed bug

Post by FrenkR »

please check case
http://forum.stimulsoft.com/viewtopic.php?f=13&t=43031

Designer must be placed in masterpage!

designer is 2015.3.5 from this Monday, provided from your support directly. Also I noticed that page is empty also(no design elements at all). There are no errors on browser "console".
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Data dictionary not displayed bug

Post by HighAley »

Hello, Frenk.

There was an issue in 2015.3.5 build that will be fixed in our next prerelease build on Friday.
Please, try this code with our next build:

Code: Select all

            var report = new StiReport();
            var connName = "Connaction1";
            var connString = "Data Source=.;Initial Catalog=Northwind;Integrated Security=True;User ID=;Password=";
            report.Dictionary.Databases.Add(new StiSqlDatabase(connName, connName, connString, false));
            StiMobileDesigner2.Report = report;
Thank you.
Post Reply