- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2016 07:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-22-2016 09:34 PM
Hi
while pointing user to external URL page from UI Action client script this will be helpful to redirect.
location.href = ("external page URL");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2016 08:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-16-2016 10:08 PM
Hi mayur tejnani,
Thanks for the reply
I have tried the same method you have posted but i tried to create it from private scope while performing from global scope i have navigate to URL i have given.But in private scope i am getting the ERROR "Cannot read property 'open' of null"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-21-2017 11:33 AM
Since this is an old thread, this information is intended for future reference.
As Manoj pointed out here, window is not available in a scoped application. For more information: Scoped Applications and Client Scripts: A Primer
Instead, one can use GlideNavigationV3, which is referenced using the instantiated variable g_navigation.
To open a new window in a scoped application from a client-side script, use the example code below:
g_navigation.openPopup('https://www.google.com');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2017 04:37 AM
Hello Trevor,
I would like to know if an application using g_navigation.open(ExternalURL) can pass the certification to be on the App Store?
Thanks for your time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-30-2017 06:48 AM
Hello Hugo,
Unfortunately, I am not familiar with application certification requirements and do not have access to that information. I would assume that it is okay since that implementation follows official documentation. However, opening external URLs always creates additional security concerns as the destination could be malicious or made malicious through an attack.
Sorry that I could not be of more assistance.