The problem has nothing to do with html tags nor the wicket handles
resources. It's related to TinyMCE. 
The editor set this for emoticons
src="../../plugins/emotions/img/smiley-xxxx.gif"
This won't work because the gifs are inside wicket.contrib.tinymce.jar and
they not supposed to be located elsewhere. (Quick hack could be to copy all
the images the path above.)
My solution is to replace src="../../plugins/emotions/img/smiley-xxxx.gif"
with 
src="wicket.contrib.tinymce.tiny_mce/plugins/emotions/img/smiley-xxxx.gif"
before add my Label to the page.
I have a feeling that I spent much more time to solve this problem than it
deserved but my app shines a little bit more :).


regards., Sandor



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/wicket-link-component-images-tp4654258p4654332.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to