Basic loader settings that are valid for all loader API methods.

Hierarchy

Properties

Properties

data?: {
    [key: string]: any;
}

Data to be sent to the server. It will be appended to the query string.

Type declaration

  • [key: string]: any

Example

// ix.api.loader.container example
ix.api.loader.container({
ixApp: {
guid: "<APPLICATION-GUID>",
pageGuid: "<PAGE-GUID>"
},
html: ix.api.dom.getHtml("<CONTAINER-GUID>"),
data: {
"company": "Test Company",
"city": "Freiburg"
}
});
fup?: HTMLElement | IxPage

Reference to a functional part.

html?: HTMLElement

An element in the Document Object Model (DOM) to determine current window / tooltip.

Example

// ix.api.loader.container example
ix.api.loader.container({
ixApp: {
guid: "<APPLICATION-GUID>",
pageGuid: "<PAGE-GUID>"
},
html: ix.api.dom.getHtml("<CONTAINER-GUID>"),
});
ixApp?: IntrexxApp

Page which should be loaded. Defined by <APPLICATION-GUID> and <PAGE-GUID>.

// ix.api.loader.container example
ix.api.loader.container({
ixApp: {
guid: "<APPLICATION-GUID>",
pageGuid: "<PAGE-GUID>"
},
html: ix.api.dom.getHtml("<CONTAINER-GUID>"),
});