|
|
|
|
|
- Overview
- Default events
- Events supported by WINDEV and WINDEV Mobile
- Optional events
- Optional Event: Page loading error
Properties associated with HTML Display controls
WINDEV and WINDEV Mobile include different WLanguage events associated with HTML Display Controls.
Events supported by WINDEV and WINDEV Mobile The following events appear by default in the code editor: | | Event | Runtime condition |
---|
Initialization | Executed when the window is opened. * | Click on a link | Executed when a link is clicked in the HTML Display control. Only external links (to another page) trigger this event. Internal links (to an anchor in the same page, for example) do not trigger this event. This event accepts parameters: PROCEDURE ClickLink(sURL is string, bInNewWindow is boolean,
sDestination is string)
where <sURL> is an optional string that contains the URL of the link clicked in the HTML Display control. If this event returns False, the action associated with the link will not be performed.
Caution: the code must not include processing that is too slow or allows the field to regain focus. In this case, the default action will still be performed.
PROCEDURE ClickLink(sURL is string, bInNewWindow is boolean,
sDestination is string)
IF bInNewWindow THEN
OpenNewBrowser(sURL)
RETURN False
ELSE
RETURN True
END
INTERNAL PROCEDURE DisplayNewBrowser(sURLParam) <delay=10ms>
<COMPILE IF ConfigurationType = Android OR ConfigurationType = iOS>
OpenMobileWindow(WIN_POPUP, sURLParam)
<ELSE>
OpenChild(WIN_POPUP. sURLParam)
<END>
END
| Before loading HTML page | Executed before loading the HTML document in the HTML Display control. If the user navigates using links in the HTML Display control, this event is executed before each HTML document is loaded. This event accepts parameters: PROCEDURE ChangePage(sURL is string, sDestination is string)
where <sURL> is an optional string that contains the URL of the page to be displayed. If this event returns False, the page will not load. | After loading HTML page | Executed after the HTML document has been loaded in the HTML Display control. If the user navigates using links in the HTML Display control, this event is executed after each HTML document has been loaded. | Load resources | Allows you to be notified and prevent application scripts or images from being loaded (for security purposes, for example). This event accepts parameters: PROCEDURE LoadResources(sURL is string, nType is int)
where: - <sURL> is a string that corresponds to the URL of the resource to be loaded.
- <nType> is a constant used to identify the type of resource to be downloaded:
- typehtmlResImage the resource to download is an image.
- typehtmlResScript type: the resource to download is a script.
- typehtmlResCss the resource to download is a CSS style.
- typehtmlResXMLHttpRequest The resource to be downloaded is an XML document generated in response to an HTTP request.
- typehtmlOther the resource to be downloaded is of an unknown type.
If this event returns False, the resource will not be loaded. | Right click on a link | Executed when the user right-clicks a link (to open a context menu). This event has the following format: PROCEDURE RightClickLink(sURL is string)
where <sURL> is a string that contains the URL of the link. |
(*) By default, the "Initialization" event of each control is executed according to the order in which the controls were created in the window. To change this order: - On the "Window" tab, in the "Order" group, click "Initialization".
- In the window that appears, use the arrows on the right to change the order in which the controls are initialized.
Optional Event: Page loading error The "Error loading page" event is executed if an error is detected when loading a page in the control. This event gets the details of the error encountered: PROCEDURE LoadError(sUrl is string, sError is string, nErrorCode is int)
where: - <sURL> is a string that corresponds to the URL of the resource to be loaded.
- <sErreur> is a string containing the error message.
- <nErrorCode> is an integer corresponding to the error code.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|