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