logo

NJP

Redirect Specific URL from Agent Workspace List

Import · Jan 11, 2023 · article

If you need to redirect from the Agent Workspace list to a specific URL then that can be done via a List Action.

1. Create List Action of type Client Script

2. Use the below script in the list action

function onClick() {
var win = top.window.open(“/now/workspace/agent/new_record/incident”, ‘_self’);
win.focus();
}

Note: The URL in this example will redirect to the Incident page within the Agent Workspace list view. URL can be changed based on requirements.

View original source

https://medium.com/@LearnITbyPrashant/redirect-specific-url-from-agent-workspace-list-3047d74d1e0c?source=rss-d005fc598f0a------2