Search
Tooltip.doShow1 Method
See Also
 






Shows the Tooltip without raising events.

Namespace: MindFusion.Common.UI
File: Tooltip.js

 Syntax

JavaScript  Copy Code

function doShow1 ()

 Example

The following code shows a tooltip when the target element is on focus, without raising any events:

JavaScript  Copy Code
var tip = new ui.Tooltip(document.getElementById("menu"));
tip.theme = "peach";
tip.position = ui.TooltipPosition.Center;
tip.trigger = ui.TooltipTrigger.Focus;
tip.render();
tip.doShow();

 See Also