Since 3.0
The tooltip component is used to pop up a tooltip for another component. You can specify various positions and effects for the tooltip.
<h:outputText id="text" ... />
...
<ace:tooltip for="text" ... >
...
</ace:tooltip>
TagLib Documentation
This section covers attributes involved in the typical use-cases for this component.
for: id of the component that the tooltip is for.
position and targetPosition are used to position the tooltip relative to the target component, e.g. "topLeft" corner of tooltip at "bottomRight" corner of target component.
showEvent, showDelay, showEffect, showEffectLength specify the event and effect to show the tooltip.
The corresponding attributes for hiding the tooltip are hideEvent, hideDelay, hideEffect, hideEffectLength
| displayListener | A server side listener to be invoked when the tooltip is about to be shown in the client. |
|---|
| display | Fired before the tooltip is shown (default event). |
|---|
The client side component object is exposed through the global variable name specified in the widgetVar attribute.
The "widgetVar" attribute on the ACE components has been removed in ICEfaces 4 and in its place a new "ice.ace.instance()" client JavaScript object lookup API has been introduced. The reason for this change is to enable lazy-initialization of the ACE component JavaScript objects to improve runtime performance and reduce browser memory use.
var widget = ice.ace.instance('frm:componentId);
The ice.ace.instance function requires the full client id of the component to be specified, such as "j_idt77:componentId" instead of just "componentId". To reduce the complexity of working with complete IDs with this function it may be preferable in some cases to use
prependId="false"in the enclosing form (e.g. <h:form prependId="false">).
This component doesn't have a client-side API made specifically to be used by application developers. However, the component's internal methods and variables can be accessed in this way, including the underlying jQuery object and objects from underlying Javascript libraries (if applicable), and can be used for whatever purpose a developer might have in mind.
The following ARIA roles are supported: alert.
<ace:tooltip id="tooltip" for="content"
speechBubble="true"
showEffect="slide"
hideEffect="fade"
showDelay="100"
hideDelay="500"
position="bottomLeft"
targetPosition="topRight"
showEffectLength="300"
hideEffectLength="300">
<!-- content -->
</ace:tooltip>
The following markup represents the basic HTML structure of the component and the CSS classes it uses.
<div class="qtip qtip-pos-tr ui-helper-reset ui-widget ui-tooltip qtip-fixed ui-widget-content ice-ace-tooltip ui-corner-all [user defined classes]" style="[user defined styles]">
<div class="qtip-tip"><canvas></canvas></div>
<div class="qtip-content ui-widget-content ui-tooltip-content">
<!-- Tooltip content -->
</div>
</div>
None.
This component can be used in delegate mode. For more information, visit this page.