Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Is there any way to have a script executed each time Netsuite reloads?
Hi Netsuite experts,
As a requirement of a project, I was required to have a script executed each time the Netsuite reloads. Currently, I have implemented:
+ User Event script, event beforeLoad. This script runs on server-side, so I inject a JavaScript into the form parameter of the event. The injected JavaScript will run at client-side, and will do our required business logic.
+ Client script, event pageInit. This script runs on client-side, and will do required business logic.
+ Portlet script. This script runs on server-side, so I inject a JavaScript into the portlet parameter of the event. The injected JavaScript will run at client-side, and will do our required business logic.