Hi
I'm trying to place two lightbox webparts on the same page. The problem is whichever lightbox is placed below the other, the fullsize-click-though (i.e. when you click on the thumbnail to enlarge to fullsize) does not work. It just sits with the loading animation playing.
This still happens even if you make the top lightbox webpart invisible.
There's nothing wrong with the individual lightbox settings and transforms, because if I swap the two webparts around the previous bottom lightbox works when its now above the other; and the previous top lightbox stops working when its below.
Is there anyway to fix this problem??
I get the feeling it might be something to do with whichever lightbox webpart on the top (in this case lightbox1 is above lightbox2) the following code is inserted:
<script type="text/javascript" language="javascript">
<!--
function getLightboxContent(path){ if (beforeLightBoxLoad(path, path + 'plcRoot$Layout$zoneContent$PagePlaceholder$PagePlaceholder$Layout$zoneLeft$lightbox1')) { WebForm_DoCallback('plcRoot$Layout$zoneContent$PagePlaceholder$PagePlaceholder$Layout$zoneLeft$lightbox1',path,setLightboxContent,null,null,false) } }function setLightboxContent(content, context){ loadLightBoxContent(content); }
-->
</script>
But there's no similar code inserted for the bottom 'lightbox2'.
I tried manually inserting similar additional code with a change of '...zoneLeft$lightbox1' to '...zoneLeft$lightbox2'. This only reversed the problem, i.e. the bottom webpart would work and the top one fail.
Can anyone help?