Search
Tooltip.render Method
See Also
 






Control.render override.

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

 Syntax

JavaScript  Copy Code

function render ()

 Example

The following code shows a tooltip when the target element is on focus:

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.show();

 See Also