Here is my simple code:
Code: Select all
var report = new StiReport();
report.RegData(dsRoot);
report.Dictionary.Synchronize();
StiMobileDesigner1.Report = report;
Code: Select all
var report = new StiReport();
report.RegData(dsRoot);
report.Dictionary.Synchronize();
StiMobileDesigner1.Report = report;
Do you see your Data Source in Dictionary tab?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?
You can use next javascript code on the page after Designer is loaded.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.
Code: Select all
jsMobileDesigner1.ExecuteAction("newReport");