- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
Hi all,
I am trying to create a UI action on the Incident table that will switch the view to the Self Service view. Unfortunately I have not been able to find a solution. The goal is to create a related link at the bottom of the list view called "Self Service View" that changes the view when clicked. I have successfully created the related link, but when I click it I just get a message that says "no record selected". What am I doing wrong?
Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
@EJ13 - please use below:
function redirectToSelfService() { window.location.href = 'incident_list.do?sysparm_view=ess&sysparm_userpref.incident_list.view=ess'; }
client- true
conlick- redirectToSelfService()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
@EJ13 - please use below:
function redirectToSelfService() { window.location.href = 'incident_list.do?sysparm_view=ess&sysparm_userpref.incident_list.view=ess'; }
client- true
conlick- redirectToSelfService()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
5 hours ago
This worked, thank you!