I've created a class extension which allows uploading of an additional file (an image). The attribute name is "headingFile".
I now need to be get the URL for that image so I can display it.
I've been able to get information about the file with: $.getBean("fileManager").readMeta($.content('headingFile'))
but can't find how I can get it's URL.
How do I get the URL for a file that has been uploaded with Class extension?
Thanks