How to refresh List View
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2015 09:09 PM
How do I refresh the List view , every time I need to refresh manually in order to see the changes/updates by clicking 'Refresh List'.
tried all community answers and servicenow guru but no luck.
Is it to be done from Client script or BR ?
Anyone can help please.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2015 09:17 PM
List View is relatively static. You can push the breadcrumb and it will refresh it, but programatically? Maybe you could put a timer in your module? Or create your own UI page that has the header set: ajax - Refresh HTML Page in Browser Automatically on Timer - Every 15 Min - Stack Overflow

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2015 09:42 PM
Hi,
You may find the below threads helpful.
https://community.servicenow.com/thread/177468
https://community.servicenow.com/thread/157753
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-30-2015 10:42 PM
Thanks for the links. I already tried but my requirement was when a particular field changes in List view then the whole list should refresh.
BR and Client script not working
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2015 02:53 AM
Write a client script "oncelledit" for the cell on whose change you want to refresh
script:
GlideList2.get(id).setFilterAndRefresh('');
id is the id of your list