This set of utility functions aids in handling edit and view pages in Intrexx applications.
A FuncPart symbolizes an Intrexx application page in JavaScript.
These functions are designed to interact with pages tied to a specific element, such as in a free layout table that can contain multiple Intrexx application pages.
Usage
The functions in this module can be accessed using the syntax ix.api.page.functionName();
Example
// Get all FuncPart instances associated with the specified free layout table. constfreeLayoutTable = ix.api.dom.getControl("<TABLE-GUID>"); constfuncParts = ix.api.page.getFuncParts(freeLayoutTable); console.log(funcParts); // Outputs: [FuncPart { ... }, FuncPart { ... }]
This set of utility functions aids in handling edit and view pages in Intrexx applications.
A
FuncPart
symbolizes an Intrexx application page in JavaScript. These functions are designed to interact with pages tied to a specific element, such as in a free layout table that can contain multiple Intrexx application pages.Usage
The functions in this module can be accessed using the syntax
ix.api.page.functionName();
Example