You can create Report Manager as a Webix view or as a standalone Jet app. Both ways will lead to the same result.
webix.ready(function() {
// use custom scrolls, optional
if (webix.env.mobile) webix.ui.fullScreen();
webix.CustomScroll.init();
webix.ui({
view: "reports",
url: "https://docs.webix.com/reports-backend/",
});
});
Related sample: Report Manager: View Initialization
webix.ready(function() {
// use custom scrolls, optional
if (webix.env.mobile) webix.ui.fullScreen();
webix.CustomScroll.init();
const app = new reports.App({
url: "https://docs.webix.com/reports-backend/"
});
app.render(document.body);
});
Related sample: Report Manager: JetApp Initialization
Back to top