- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:11 AM
Hi,
I want to create a related link on the Change Request form which, when clicked, will redirect to another page, but I don't know how to do it.
I created UI Action but I don't know how to make it redirect me to another page.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:35 AM - edited 06-19-2024 09:39 AM
Hi @New user1212 ,
Check the field named Client to true and in onClick field define redirectRecord()
The final script will be as below:
function redirectRecord(){
url = "<your_URL_here>";
g_navigation.openPopup(url);
}
Remove the line:
action.setRedirectURL(current);
Please try the above.
Please Mark My Response as Correct/Helpful based on Impact
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:39 AM
I have updated the above, please check
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:18 AM
Hi @New user1212 ,
Pleas try the below:
url = "https://www.google.com";
g_navigation.openPopup(url);
action.setRedirectURL(current);
Please Mark My Response as Correct/Helpful based on Impact
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:22 AM
doesn't work, it returns me to the view of all change requests
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:35 AM - edited 06-19-2024 09:39 AM
Hi @New user1212 ,
Check the field named Client to true and in onClick field define redirectRecord()
The final script will be as below:
function redirectRecord(){
url = "<your_URL_here>";
g_navigation.openPopup(url);
}
Remove the line:
action.setRedirectURL(current);
Please try the above.
Please Mark My Response as Correct/Helpful based on Impact
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2024 09:38 AM
now no link doesn't redirect anywhere at all