- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 02:35 PM
Hello,
I have a form that has many UI actions on it each of which instantiate the same script include and then their own particular function within that script include. I was wondering if the same script include is instantiated for each UI action when the form is rendered. I am concerned that handling UI actions in this manner isn't the most performant in cases where there are many UI actions on a form.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 05:50 PM
Hi @chrisf ,
You can print out some logs in "initialize" function, by observing the logs, you will know how many times "initialize" function is called. (This function gets called when the Script Include is initialized)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2024 05:50 PM
Hi @chrisf ,
You can print out some logs in "initialize" function, by observing the logs, you will know how many times "initialize" function is called. (This function gets called when the Script Include is initialized)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2024 11:34 AM
Hi @DYCM ,
This worked to get the info I needed. Thanks!