Reputation: 10065
Does Richfaces 4 provides any built-in possiblity of a tooltip which sticks and allows the user to select text or click a link within the tooltip? The tooltip will be placed within a table.
Or did you have had this requirement as well and how did you solve it?
Upvotes: 0
Views: 130
Reputation: 19776
That should be the most simple example for an interactive tooltip.
<h:form>
<rich:panel>
<rich:tooltip followMouse="false" hideDelay="1500">
<h:commandLink action="#{bean.doSomething()}" value="Do Something!" />
</rich:tooltip>
</rich:panel>
</h:form>
Upvotes: 2