fires when a folder is selected in the "Files" or "Table" views
id | string | the id of the selected folder |
$$("files").attachEvent("onItemSelect", function(id){
webix.message("The selected folder is '" +this.getItem(id).value+"'");
});
Back to top