BiToolTipManager

A singleton class used by the system to manage tool tips.

This class extends BiObject and therefore all methods and fields available for BiObject are also available for BiToolTipManager .

Constructor

new BiToolTipManager ( )

Parameters

No parameters.

Properties

NameTypegetsetDescripton
currentToolTipBiToolTipcheckedcheckedThe currently shown (or about to show) tool tip

Methods

NameDescription
handleBlurCalled when a blur event occured. This method decides whether to show or hide a tool tip.
handleFocusCalled when a focus event occured. This method decides whether to show or hide a tool tip.
handleMouseOutCalled when a mouse out event occured. This method decides whether to show or hide a tool tip.
handleMouseOverCalled when a mouse over event occured. This method decides whether to show or hide a tool tip.

Events

None.

Static Methods

None.

Static Fields

None.

Remarks

None.

Method Details

handleBlur

Called when a blur event occured. This method decides whether to show or hide a tool tip.

Syntax

object.handleBlur ( e )

Parameters

NameTypeOptionalDefaultDescripton
eBiMouseEventThe event object describing the event

Return Type

void

handleFocus

Called when a focus event occured. This method decides whether to show or hide a tool tip.

Syntax

object.handleFocus ( e )

Parameters

NameTypeOptionalDefaultDescripton
eBiMouseEventThe event object describing the event

Return Type

void

handleMouseOut

Called when a mouse out event occured. This method decides whether to show or hide a tool tip.

Syntax

object.handleMouseOut ( e )

Parameters

NameTypeOptionalDefaultDescripton
eBiMouseEventThe event object describing the event

Return Type

void

handleMouseOver

Called when a mouse over event occured. This method decides whether to show or hide a tool tip.

Syntax

object.handleMouseOver ( e )

Parameters

NameTypeOptionalDefaultDescripton
eBiMouseEventThe event object describing the event

Return Type

void