Hi Andrew,
There is no "OnLoaded" System Event in Outsystems Platform, but if you wish to execute an action after the page is completed loaded, you can add a script to your page to trigger a hidden link that executes an Action (see the example at the end). You can try to use the Event System component too, maybe it can help you achieve what you need.
There is no "OnLoaded" System Event in Outsystems Platform, but if you wish to execute an action after the page is completed loaded, you can add a script to your page to trigger a hidden link that executes an Action (see the example at the end). You can try to use the Event System component too, maybe it can help you achieve what you need.
"<scripttype="text/javascript"> window.onload =function (){
$('#" + YourLinkButton.Id + "').click();}</script>"