Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
$designer = new StiDesigner();
$designer->javascript->relativePath = '../';
$designer->process();
$report = new StiReport();
$report->loadFile('../reports/SimpleList.mrt');
$designer->report = $report;
$designer->printHtml();new StiDesigner() — creates the server-side designer object that emits the client-side designer.process() — handles the designer's server requests (data, save, preview).designer->report — loads a report into the designer to open it for editing.printHtml() — outputs the complete designer to the page.process() handles the designer's server requests, and printHtml() outputs the complete designer. Loading a report into designer->report opens it for editing — the full designer runs client-side.