Hello, I'm trying to do a thumbnail gallery on my web page so that when one is clicked the full size image is shown. The images are stored in a backing bean and are shown with an tag.
<li>
<a href="????">
<ice:graphicImage value="#{screenshot.image}" styleClass="thumb"/>
</a>
</li>
When on the page, I see the images have addresses like /block/resource/MjY0OTc3Mzc1/ since they are served by the Icefaces blocking servlet.
What i need to know is how to get the link to the image so i can put it in the element.
Thanks for any help !