• 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.

    Parameters

    Returns true | Promise<any, any, any>

    Example

    ix.api.loader.tooltip({
    ixApp: {
    guid: "<APP-GUID>",
    pageGuid: "<PAGE-GUID>"
    }
    });

    Example

    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>")
    },
    });

    Example

    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");