|
|
|
|
|
- Events run when changing the internal page
- Limitations
- SourcePage property
ChangeSourcePage (Function) In french: ChangePageSource Dynamically changes the page displayed in an Internal Page control. During this modification, parameters can be passed to the new internal page. As of version 2024, this function is available in Ajax calls.. This function allows internal pages to be changed using Ajax programming.. This makes it possible to split and structure a page containing a large number of fields.. This function is particularly useful in SPA (Single-Page Application) applications.
ChangeSourcePage(PI_ChampPageInterne, PI_PageInterne)
Syntax
ChangeSourcePage(<Internal Page control> , <Internal page> [, <Parameter 1> [... [, <Parameter N>]]])
<Internal Page control>: Control name Name of the Internal Page control that will be modified. <Internal page>: Name of internal page Name of the internal page that will be associated with the Internal Page control. <Parameter 1>: Type corresponding to the parameter (optional) First parameter that will be passed to the internal page. <Parameter N>: Type corresponding to the parameter (optional) Nth parameter that will be passed to the internal page. Remarks Events run when changing the internal page The following events are executed when ChangeSourcePage is called: - "Before unloading the internal page". This event is associated with the Internal Page control.
- "Close" event of the previous internal window.
- "Global declarations" of the new internal page.
- "Initialization" event of the controls in the new internal page.
- "Initialization" event of the internal page.
- "After loading the internal page". This event is associated with the Internal Page control.
- The names and parameters of the called functions must be identical on both pages.
- If a control of the internal page is used directly from outside, there must be a control with the same name in the new internal page.
- The values of global variables for the previous internal page are lost.
The SourcePage property returns the name of the internal page currently displayed in an Internal Page control. Business / UI classification: UI Code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|