Want to get the knowledge for use of execute globally checkbox in custom code under actions. The info link just besides it is not working.
Any help would be highly appreciated.
Solved! Go to Solution.
if you check this box, the variables become global meaning they will be available directly on the page.
For example, if your custom code is myVar=1; and the box is unchecked, this variable can't be read when you refer to it either directly from the page or later from other Launch components — execute myVar in the browser console and you will see "the variable is not defined".
With the box checked, you can read and write to it directly from the page — execute myVar in the browser console and you will see "1" returned.
if you check this box, the variables become global meaning they will be available directly on the page.
For example, if your custom code is myVar=1; and the box is unchecked, this variable can't be read when you refer to it either directly from the page or later from other Launch components — execute myVar in the browser console and you will see "the variable is not defined".
With the box checked, you can read and write to it directly from the page — execute myVar in the browser console and you will see "1" returned.
Thank you !!! It helped a lot.
Views
Like
Replies
Views
Likes
Replies
Views
Likes
Replies