We built a custom Tooltip which extends panel. In order to make ik IE compatible we need to render a simple <IFRAME> with some static content after we render our component. We want to make our Tooltip easy to extend, so I can not put it in HTML.

Normally you could put something like getResponse().write("<IFRAME>...</IFRAME>") in the onRender() method. But for Panel this is final, so I can not overwrite it..... Is there a way to solve this for a myPanel in my Java code?

desired output is something like:

<span wicket:id="feedbacktooltip" style="visibility:hidden; z-index:1; position:absolute" id="id_fbi">
<wicket:panel>
   .....think lot's of code here
</wicket:panel>
</span>
<IFRAME>..some content here</IFRAME>





-------------------------------------------------------
SF.Net email is sponsored by:
Tame your development challenges with Apache's Geronimo App Server. Download
it for free - -and be entered to win a 42" plasma tv or your very own
Sony(tm)PSP.  Click here to play: http://sourceforge.net/geronimo.php
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to