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