Вы можете создать Desktop как Webix компонент или же как отдельное Jet приложение. Оба способа дают один и тот же результат.
function start(user) {
webix.ready(function() {
if (webix.env.touch) webix.ui.fullScreen();
else if (webix.env.scrollSize) webix.CustomScroll.init();
desktop = webix.ui({
view: "desktop",
systemParams: user,
apps: myApps,
});
});
}
login("someurl").then(start);
Related sample: Desktop: View Initialization
function start(user) {
webix.ready(function() {
if (webix.env.touch) webix.ui.fullScreen();
else if (webix.env.scrollSize) webix.CustomScroll.init();
app = new desktop.App({
systemParams: user,
apps: myApps,
});
app.render(document.body);
});
}
login("someurl").then(start);
Related sample: Desktop: JetApp Initialization
Наверх