fires before a component of the file manager is initialized
id | string | the view id |
config | object | the object with view configuration |
$$("fmanager").attachEvent("onViewInit": function(id, config){
// disable multi-selection for "table" and "files" views
if (id == "table" || id == "files"){
config.select = true;
}
});