- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2023 05:45 AM
I want to automatically refresh the list in SOW every 5 minutes. How to do it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2023 04:19 AM
Yes I realized that. Right now I am setting glide.lists.live_list_enabled to true. It solves the problem to an extent.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2023 06:03 AM
Hello @vidhya_mouli
You need to write a Client Script for the Workspace, For this
You can Create a UI Action with the following code to refresh the list view:
This will refresh the list view every 5 minutes.
Name: Refresh List Show
Insert: true
Show Update: true
Client: true
List banner button: true
List context menu: true
onClick: refreshCustomer();
/*Refresh Customer Incident List manually) */
function refreshCustomer() {
GlideList2.get("u_customer_incident").refresh();
}
setTimeout(function() {refreshCustomer(); }, 300000);
Plz mark my solution as Accept, If you find it helpful.
Regards,
Samaksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-27-2023 06:44 AM
Thank you, however this is not work for Service Operational Workspace list.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2023 01:26 AM
I would be interested in this as well. However to my knowledge an auto refresh on a workspace list is not possible.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-29-2023 04:19 AM
Yes I realized that. Right now I am setting glide.lists.live_list_enabled to true. It solves the problem to an extent.