- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2016 09:27 AM
I am trying to open a URL in a new tab/window in the client script of a UI action. Due to it being a scoped application, window.open(url) does not work. What alternative is there for window.open in a scoped app?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-03-2016 02:15 AM
Found that there is an API called g_navigation through which we can perform some DOm related tasks, e.g. reloading the page, opening a popup etc. I couldnt find the documentation for this API though.
For my requirement, i used the following code in my client script:
g_navigation.openPopup(url);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-03-2016 02:15 AM
Found that there is an API called g_navigation through which we can perform some DOm related tasks, e.g. reloading the page, opening a popup etc. I couldnt find the documentation for this API though.
For my requirement, i used the following code in my client script:
g_navigation.openPopup(url);

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-06-2016 09:56 AM
Just in case anyone finds this thread (it's one of only a couple that show up via searching), documentation for g_navigation is available on the Developer community (developer.servicenow.com) under the Helsinki release and "GlideNavigationV3".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-29-2018 12:40 PM
Hey Jivanjot Kaur,
This really helped for what I was looking to achieve, as Erik mentioned, documentation for g_naviagtion is available on developer.servicenow.com>API>Client>GlideNavigationV3
Thanks,
Pratik