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