DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
| Panel | ||||
|---|---|---|---|---|
| ||||
|
= 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 | ||||
|---|---|---|---|---|
| ||||
<wicket:head> <wicket:link> {panel} <script wicket:id="addEventJs"></script> <script wicket:id="sweetTitlesJs"></script> {panel} </wicket:link> </wicket:head> |
...