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