- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 05:21 AM
Hi ,
how to call global script include from private scope application.
below is the client script code which is calling script include from global scope, I want to use same code and call same script include but when working in my private scope.
What changes needs to be made in the code
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2017 02:46 PM
Hey Anshul,
You can try simply adding 'global.' when you initialize the global script include in your scoped app. For example it would look like this:
var scriptInclude = new global.scriptInclude();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 05:56 AM
Hi,
Try setting the Accessible From field with value All Application Scopes in the script include.
Regards,
Karthik Nagaramu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2017 06:06 AM
I am getting this below error any idea on this.
onChange script error: TypeError: Unable to get property 'split' of undefined or null reference function(){var o=i(m,arguments);return l.apply(n,o)}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-05-2017 02:46 PM
Hey Anshul,
You can try simply adding 'global.' when you initialize the global script include in your scoped app. For example it would look like this:
var scriptInclude = new global.scriptInclude();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-07-2017 04:12 PM
Hey Anshul,
Did my proposed solution work for you?