specifies the collection of server scripts for action handling
webix.ui({
view:"filemanager",
handlers:{
"upload" : "data/saving.php",
"download" : "data/saving.php",
"copy" : "data/saving.php",
"move" : "data/saving.php",
"remove" : "data/saving.php",
"rename" : "data/saving.php",
"create" : "data/saving.php",
// for dynamic loading in the "branch" mode
"branch": "../common/data_branch.php",
// for dynamic loading in the "files" mode
"files": "../common/data_dyn.php",
// for server-side searching for a file
"search": "../common/data_branch.php"
}
});