I'm struggling a little with a very simple module - actually it is not so much the module as it is Dynamicweb ;)
The problem is:
I have a collection of filemanager controls with their folder attribute set to '/Billeder' and their FullPath attribute set to 'true'
When I select a file from the dropdownlist ther's no problem, BUT if I choose to browse for the image, then the path is wrong.
IE. I have another folder (Billeder from before is under /Files/Billeder) under /Files/img and when I choose an image from that folder the filemangere read ../img/<pictureName> that image is not found...
My template looks like this...
...
<!--@HeaderEnd-->
<img src="Files/<!--@test-->" width="450" alt="" />
<!--@FooterStart-->
...
So I thought - "OK - then maybe I should not insert files in the sorc attribute, nbut that seems to turn the problem around, so that the images from the 'Billed' folder is not found, but the others are.
I'm sure there's a simple solution to this issue, I just can't seem to find it...