Stage settings (ix.api.loader.stage) that can be passed to the loader to define how the stage that is to be opened should look like and behave.

Hierarchy

Properties

addHistoryEntry?: boolean

Add HTML5 history entry.

Example

ix.api.loader.stage({
ixApp: {
guid: "<APPLICATION-GUID>",
pageGuid: "<PAGE-GUID>"
},
data: {
"company": "INTREXX GmbH",
"city": "Freiburg"
},
addHistoryEntry: true,
});
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>"),
});