Open Designer In Full Screen
Posted: Fri Apr 01, 2016 2:05 pm
Hi again.
Following documentation, my code :
This works. I have and id "report_designer" right below my div container, but I want to open it in full screen. I tried this code:
And
But the result was the same below:
What i need to do, to open my report in the designer it in full screen ?
Following documentation, my code :
Code: Select all
$("#services").on('click', function() {
var report = new Stimulsoft.Report.StiReport();
report.loadFile("js/report_teste.mrt");
var designer = new Stimulsoft.Designer.StiDesigner(null,"StiDesigner", false);
designer.report = report;
designer.renderHtml("report_designer");
});
Code: Select all
designer.renderHtml(); // Like documentation
Code: Select all
designer.renderHtml("designerContent"); Like documentation