Вы можете создать Scheduler как Webix компонент или же как отдельное Jet приложение. Оба способа дают один и тот же результат.
webix.ready(function() {
// настраиваем скролл, необязательно
webix.CustomScroll.init();
webix.ui({
view: "scheduler",
date: new Date(2018, 4, 21, 0, 0, 0),
url: "https://docs.webix.com/calendar-backend/"
});
});
Related sample: Scheduler: Webix View Initialization
webix.ready(function() {
webix.CustomScroll.init();
var app = new scheduler.App({
date: new Date(2018, 4, 21, 0, 0, 0),
url: "https://docs.webix.com/calendar-backend/",
});
app.render(document.body);
});
Related sample: Scheduler: JetApp
Наверх