Class type Ext_tip_ToolTip.t


class type t = object .. end
Inherits
method triggerElement : Dom_html.element Js.t Js.prop

When a ToolTip is configured with the delegate option to cause selected child elements of the target Element to each trigger a separate show event, this property is set to the DOM element which triggered the show.


method beforeDestroy : unit Js.meth

Invoked before the Component is destroyed.


method hide_tooltip : unit Js.meth

Hides this tooltip if visible.


method setTarget : 'a. 'a Js.t -> unit Js.meth

Binds this ToolTip to the specified element. The tooltip will be displayed when the mouse moves over the element.

Parameters:


method show_tooltip : unit Js.meth

Shows this tooltip at the current event target XY position.


method showAt_arr : Js.number Js.t Js.js_array Js.t -> unit Js.meth

Shows this tip at the specified XY position. Example usage:

// Show the tip at x:50 and y:100
tip.showAt([50,100]);

Parameters: