Вы можете создать Report Manager как Webix компонент или же как отдельное Jet приложение. Оба способа дают один и тот же результат.
webix.ready(function() {
// настраиваем скролл (необязательно)
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() {
// настраиваем скролл (необязательно)
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
Наверх