Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderStylesolid
titleTable of contents
Table of Contents
minLevel1

= Tooltips =

Recently I had to migrate a big web application from Wicket 1.1.1 to 1.2.1. I was using the contrib-dojo Tooltip class, which doesn't work with 1.2, so I had to find another solution. I found Igor's suggestions for tooltips and chose to go with "Sweet Titles".

...

Add this to the head section of the html file you want to use tooltips in:

Code Block
html
html
<wicket:head>
<wicket:link>
{panel}
 <script wicket:id="addEventJs"></script>
 <script wicket:id="sweetTitlesJs"></script>
{panel}
</wicket:link>
</wicket:head>

...