You can create Gantt 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: "gantt",
url:"https://docs.webix.com/gantt-backend/",
});
});
Related sample: Gantt: Webix View Initialization
webix.ready(function() {
// use custom scrolls, optional
if (webix.env.mobile) webix.ui.fullScreen();
webix.CustomScroll.init();
var app = new gantt.App({
url:"https://docs.webix.com/gantt-backend/"
});
app.render(document.body);
});
Related sample: Gantt: JetApp Initialization
Back to top