Hi there!
I am creating a list of items with images.
The "summary" view is inadequate, so I am working on creating an HTML view that will nicely list the image and a few other fields for each entry.
How would you go about displaying images within HTML?
Here is my HTML/Deluge code:
- htmlpage testpage()
- <%{%>
- <%totrec = Illustrations.count();
- for each r in Illustrations
- {%>
- <%=r.Name%> <%=r.Image%><br/>
- <%}
- }%>
Resulting in displaying the content of the "name" field correctly
but giving a broken url image.
This is the HTML code:
- "
- Test Image Title "
- <img src="/sharedBy/appLinkName/viewLinkName/fieldName/image/MyImageFilename.jpg" border="0">
- <br>
Looking like this:
Any ideas? :)
Best,
Dorian