Customize view configuration in Webix File Manager using onViewInit event handler. In this programming example, multi-selection is turned off for the 'table' and 'files' views. Feel free to use this piece of code for configuring your File Manager.
/* The sample uses an outdated File Manager that is no longer supported. To learn about the new tool, visit https://docs.webix.com/desktop__filemanager.html */ webix.ui({ rows:[ { view: "label", css: "header", label: "onViewInit event handler allows customizing views configuration. In this sample multi-selection is turned off for the 'table' and 'files' views" }, { view:"filemanager", id:"files", on:{ "onViewInit": function(name, config){ // disable multi-selection for "table" and "files" views if (name == "table" || name == "files"){ config.select = true; } } } } ] }); $$("files").load("https://docs.webix.com/filemanager/samples/server/");
<style> .header div{ padding: 0 10px; } </style>