Hello,
found the problem (hopefully) by myself... maybe some others may find it useful as well:
in the file [tt]manager/media/browser/mbpuk/frmresourceslist.html[/tt] I had to unescape the folderpath:
function LoadResources( resourceType, folderPath )
{
oListManager.Clear() ;
oConnector.ResourceType = resourceType ;
// oConnector.CurrentFolder = folderPath;
oConnector.CurrentFolder = unescape(folderPath);
oConnector.SendCommand( 'GetFoldersAndFiles', null, GetFoldersAndFilesCallBack ) ;
}
The same needs to be done in [tt]frmactualfolder.html[/tt]:
function SetCurrentFolder( resourceType, folderPath )
{
// document.getElementById('tdName').innerHTML = folderPath;
document.getElementById('tdName').innerHTML = unescape(folderPath) ;
}
Thomas