- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2022 12:45 PM - edited 12-19-2022 01:03 PM
Hi,
I would like to create a UI action (button) on the sys_email.list to refresh the content. Instead of right-clicking on the banner contextual-menu and select Refresh.
Alternatively, it would be great to have it on all list view and not only on the sys_email table.
Maybe something similar to location.reload() but on a list view?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2022 01:02 PM
You can create a simple UI action
Alternatively, clicking on the filter also reloads the list
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2022 01:02 PM
You can create a simple UI action
Alternatively, clicking on the filter also reloads the list

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2022 01:06 PM
Can you try the solution posted here
https://www.servicenow.com/community/developer-forum/how-to-refresh-list-view-using-refresh-method/m...
function nowRefreshTheList() {
var w = top.gsft_main || top; //support for both having frame(navigator) and no frames
w.location.reload();
}
Please mark this response as correct or helpful if it assisted you with your question.