Field decorator that opens external URL in Configurable Workspace
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2024 01:57 AM
Hi,
In Service Operations Workspace, I am trying to build an Action Assignment with Action Model = Field that opens a URL in a new tab of the browser.
I already tried client side script with
g_navigation.openPopup(url);
window.open(url);
window.open(url, '_blank');
And server side script with
And server side script with
action.setRedirectURL(url);
But none of them seem to work.
But none of them seem to work.
Who can help?
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-24-2024 04:43 AM - edited 04-24-2024 04:44 AM
Found the answer: the following client script works:
var win = top.window.open(url, '_blank');
win.focus();

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2025 04:22 AM
Thank you !!!