ix.api.loader.tooltip({
ixApp: {
guid: "<APP-GUID>",
pageGuid: "<PAGE-GUID>"
}
});
Open tooltip on element with alignment below_left
ix.api.loader.tooltip({
ixApp: {
guid: "<APP-GUID>",
pageGuid: "<PAGE-GUID>",
},
windowSettings: {
position: "element",
alignment: "below_left"
htmlTarget: ix.api.dom.getHtml("<ELEMENT-TO-POSITION-TOOLTIP-GUID>")
},
});
Open tooltip in fullscreen mode
ix.api.loader.tooltip({
ixApp: {
guid: "<APP-GUID>",
pageGuid: "<PAGE-GUID>",
},
windowSettings: {
position: "modal",
className: "TT_MODAL",
closeByButton: false,
title: false,
width: 100,
widthUnit: "%",
height: 100,
heightUnit: "%",
key: "fooBar"
},
});
// close tooltip (by key)
ix.api.tooltip.close("fooBar");
Loads an Intrexx page and displays it inside of a tooltip.
The measurements of the tooltip and the positioning depends on the passed in tooltip settings.