Hello,
I recently installed LimeSurvey and have been messing around with it, trying out different options.
While I was adding images to a group's description, I figured thumbnails might work well. I installed
highslide.com server-side. It works.
The problem is, LimeSurvey's description editor (FCKeditor) seems to strip the onClick attribute, so when I add the following as a description (using the Source window of the editor):
<br />
Description title here..<br />
<br />
<div class="highslide-gallery">
<ul>
<li><a href="upload/surveys/12345/image.jpg" class="highslide" title="Caption here.." onclick="return hs.expand(this, config1 )"><img src="upload/surveys/12345/image.thumb.jpg" alt=""/></a></li>
<li><a href="upload/surveys/12345/image.jpg" class="highslide" title="Caption here.." onclick="return hs.expand(this, config1 )"><img src="upload/surveys/12345/image.thumb.jpg" alt=""/></a></li>
</ul>
<div style="clear:both"> </div>
</div>
<br />and save, this is what happens:
<br />
Description title here..<br />
<br />
<div class="highslide-gallery">
<ul>
<li><a>click="return hs.expand(this, config1 )" title="Caption here.." class="highslide" href="upload/surveys/12345/image.jpg" _fcksavedurl="upload/surveys/12345/image.jpg"><img src="upload/surveys/12345/image.thumb.jpg" alt="" /></a></li>
<li><a>click="return hs.expand(this, config1 )" title="Caption here.." class="highslide" href="upload/surveys/12345/image.jpg" _fcksavedurl="upload/surveys/12345/image.jpg"><img src="upload/surveys/12345/image.thumb.jpg" alt="" /></a></li>
</ul>
<div style="clear:both"> </div>
</div>
<br />
Is there any way around this?
Thanks!