HTML5 Report Mobile Designer Dataset

Stimulsoft Reports.WEB discussion
bobsov
Posts: 115
Joined: Sun Jan 27, 2013 12:10 am

HTML5 Report Mobile Designer Dataset

Post by bobsov »

I am loading a custom dataset in report mobile designer on loadreport event. This shows up in right panel dictionary. However, when I go to select New -> Standard Report. my data sources in wizard is empty. Is this not supported yet?

Here is my simple code:

Code: Select all

        
        var report = new StiReport();
        report.RegData(dsRoot);
        report.Dictionary.Synchronize();
        StiMobileDesigner1.Report = report;

Second question -> How can I force wizard to display(with Standard Report) if the report happens to be new report as soon as user lands to the page.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: HTML5 Report Mobile Designer Dataset

Post by HighAley »

Hello.
bobsov wrote:I am loading a custom dataset in report mobile designer on loadreport event. This shows up in right panel dictionary. However, when I go to select New -> Standard Report. my data sources in wizard is empty. Is this not supported yet?
Do you see your Data Source in Dictionary tab?
bobsov wrote:Second question -> How can I force wizard to display(with Standard Report) if the report happens to be new report as soon as user lands to the page.
You can use next javascript code on the page after Designer is loaded.

Code: Select all

jsMobileDesigner1.ExecuteAction("newReport");
Thank you.
bobsov
Posts: 115
Joined: Sun Jan 27, 2013 12:10 am

Re: HTML5 Report Mobile Designer Dataset

Post by bobsov »

Hello Aleksey:

Yes, I see the datasource in dictionary tab with all columns information. However, I don't see this in Wizard.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: HTML5 Report Mobile Designer Dataset

Post by HighAley »

Hello.

Please, send us a sample project which reproduces the issue for analysis.

Thank you.
bobsov
Posts: 115
Joined: Sun Jan 27, 2013 12:10 am

Re: HTML5 Report Mobile Designer Dataset

Post by bobsov »

I am attaching what designer looks like. I will send u project file too.
Attachments
stimulsoft_forum_sc2.PNG
stimulsoft_forum_sc2.PNG (54.84 KiB) Viewed 3466 times
stimulsoft_forum_sc.PNG
stimulsoft_forum_sc.PNG (100.34 KiB) Viewed 3466 times
bobsov
Posts: 115
Joined: Sun Jan 27, 2013 12:10 am

Re: HTML5 Report Mobile Designer Dataset

Post by bobsov »

I will send you an email with attachments.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: HTML5 Report Mobile Designer Dataset

Post by HighAley »

Hello.

Thanks. We will answer you by email soon.
bobsov
Posts: 115
Joined: Sun Jan 27, 2013 12:10 am

Re: HTML5 Report Mobile Designer Dataset

Post by bobsov »

Any rough estimate on this Aleksey?
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: HTML5 Report Mobile Designer Dataset

Post by HighAley »

Hello.

You should handle OnCreateReport event to see your Data Source in the Wizard.
Please, look at the attached project.

Thank you.
Attachments
FixedDorsettReports.zip
(6.24 MiB) Downloaded 271 times
bobsov
Posts: 115
Joined: Sun Jan 27, 2013 12:10 am

Re: HTML5 Report Mobile Designer Dataset

Post by bobsov »

I can actually swear that I tried that "onCreateReport" too. This works great.

I am finally moving away from silverlight report designer to html5 report designer. It is solid and rocks all the way. Hope to see chart feature soon too.
Post Reply