Sephy
Sephy

Reputation: 50412

Create info bubble in wicket?

Is there a way to create info bubbles in wicket. I would imagine for instance a ? as a small round image and when hovered-over, it would pop out a bubble with some text/images/stuff in it. A bit like a ModalWindow actually but which would be shown and hidden by hovering on a question mark and which would appear nearby the question mark. Is there a known component to do that or do I have to create my own modal window which is reacting to hovering states ?

Upvotes: 0

Views: 651

Answers (2)

fmucar
fmucar

Reputation: 14558

See the below link for sample tooltip for wicket

http://wicket.visural.net/examples/tooltips

Upvotes: 0

Rob Audenaerde
Rob Audenaerde

Reputation: 20069

I am a happy user of jQuery and for tooltips (that may contain any HTML content) I use jQuery Tools : http://flowplayer.org/tools/tooltip/index.html

You can wrap the jQuery in a component with a header contributer, together with and the (html?) tooltip and the question mark.

Upvotes: 1

Related Questions