"Have a look at the programming example of how noFileCache defines whether caching is enabled in Webix File Manager. Feel free to download an use our coding samples."
var path = "https://docs.webix.com/samples/64_file_manager/"; webix.ready(function(){ webix.ui({ view:"filemanager", id: "files", noFileCache: true, handlers:{ "branch" : path+"common/data_branch.php", "search" : path+"common/data_branch.php", "upload" : path+"common/data_branch.php", "download" : path+"common/data_branch.php", "copy" : path+"common/data_branch.php", "move" : path+"common/data_branch.php", "remove" : path+"common/data_branch.php", "rename" : path+"common/data_branch.php", "create" : path+"common/data_branch.php" } }); $$("files").load(path+"common/data_branch.php"); });