Shows the Tooltip without raising events.
Namespace: MindFusion.Common.UI
File: Tooltip.js
SyntaxJavaScript
Copy Code
|
|---|
function doShow1 () |
ExampleThe 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