ix.loader.tooltip({
    ixApp: {
        guid: "<APP-GUID>",
        pageGuid: "<PAGE-GUID>"
    }
});
ix.loader.tooltip({
    ixApp: {
        guid: "<APP-GUID>",
        pageGuid: "<PAGE-GUID>",
    },
    windowSettings: {
        position: "embedded",
        htmlTarget: ix.util.getHtml("<CONTAINER-GUID>")
    },
    onBeforeUnload: () => {
        // function code
    },
    data: {
        "rq_param1": "Hello world!"
    }
});
Fullscreen tooltip
// open fullscreen tooltip
ix.loader.tooltip({
    ixApp: {
        guid: "<APP-GUID>",
        pageGuid: "<PAGE-GUID>",
    },
    windowSettings: {
        position: "window",
        alignment: "top_left",
        width: -1,
        height: -1,
        key: "fooBar"
    },
    onBeforeUnload: () => {
        // function code
    },
    data: {
        "rq_param1": "Hello world!"
    }
});
// close tooltip (by key)
var tooltip = ix.tooltip.getByKey("fooBar");
tooltip.close();
Loads an Intrexx page and display it in a tooltip.
The measurements of the tooltip and the positioning depends on the passed tooltip settings.