Hey all,
I'm not an expert by any stretch and tried searching Gmane
to no avail. I am trying to iterate over a set of images to show their
thumbnails on the page with each image being a link to the full size
version of the image. The thumbnails show up fine but the links created,
using popuplink, all popup a window showing the last image to be
iterated. For example, 4 images (a,b,c,d) all show thumbnails fine but
clicking on any of them all show the popup window with picture d.
Heres my html that I'm sure has some problems.
<span jwcid="@Foreach" source="ognl:allLinkedImages"
value="ognl:Image" >
<tr>
<td>
<a href="ognl:applicationBasePath + Image.fileName"
jwcid="@contrib:PopupLink"
features='ognl:"resizable,scrollbars,top=100,left=100,height=800,width=6
00"'>
<img jwcid="@Any" src="ognl:applicationBasePath +
Image.thumbnailName"/>
</a>
</td>
</tr>
</span>
Is it not possible to do this? Should I just use standard html links?
Thanks,
Adrian