How to add a button to a catalogue item within a list in a workspace page?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
In the below list in my workspace , I'm wanting to add a new button that will take the user to a particular catalogue item on our service portal:
I don't have much experience with workspaces or UI Builder and I was just wondering if anyone has done something similar before.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
check this
Adding a Record Producer or Catalog Item button to the list view in Agent Workspace List Action
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Try below:
1. Type "declarative action" in left nav and open list action.
2. Create new , give name , action name, Implemented as = client script.
3. Select View as "service operations workspace" and Table on which you want the button,
In the client script add below code:
location.href = 'URL of your catalog item';
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Where do I find the client script as that field doesn't appear on the form?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
If your implement as is selected as "client script", then change the view of form to advanced , you will see it.