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