Hi,
Sorry, but this is not possible without custom code. You find a code example below.
To expand all first level folders, and remove the “new folder” link when one folder exists add this code to the custom js textarea:
function vLookupIsLoadedCallback(fin){
if(fin === "vLookupDocuments"){
if($("#dffs_vLookupDocuments").find("img.vLookupFolderIcon").length > 0){
$("#dffs_vLookupDocuments").find("img.vLookupFolderIcon").parent().click();
// Remove new folder link
$("#dffs_vLookupDocuments").find("div.vLookupAddNewFolderLabel").remove();
}
}
}
The field name “vLookupDocuments” must be replaced with the field you use in your setup.
Hope this helps,
Alexander