- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-28-2024 11:22 PM
I am considering creating an event handler in the UI Builder that will allow for navigation within the same tab upon clicking. Is it possible to manually create such an event handler?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 04:57 AM
Hi @Y_Aoi,
You can use the link to destination event on the button use the Script mode.
use the code as below:
return {
external: {
url: "https://developer.servicenow.com/dev.do#!/home",
target: "_self"
},
};
Please accept the solution if it was helpful.
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2024 04:57 AM
Hi @Y_Aoi,
You can use the link to destination event on the button use the Script mode.
use the code as below:
return {
external: {
url: "https://developer.servicenow.com/dev.do#!/home",
target: "_self"
},
};
Please accept the solution if it was helpful.
Thanks