- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2016 04:08 PM
Hello folks,
How can i refresh a list in a tab in a form with client script on the form? For example, when a record is saved, the Task SLAs tab does not immediately get updated, and the users need to click the Task = Form for Processing link (see below) to refresh the list.
Thanks in advance.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2016 09:56 PM
Hi George,
I tried and here is the final script you have to write.
Script :
function onLoad() {
//Type appropriate comment here, and begin script below
GlideList2.get(g_form.getTableName() + '.task_sla.task').setFilterAndRefresh('');
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2016 09:56 PM
Hi George,
I tried and here is the final script you have to write.
Script :
function onLoad() {
//Type appropriate comment here, and begin script below
GlideList2.get(g_form.getTableName() + '.task_sla.task').setFilterAndRefresh('');
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2016 10:47 PM
Thanks very much Pradeep, it works like a charm! the Task Sla tab list refreshes effectively when form get reloads (saved/updated)
Your assistance is much appreciated.
Best regards,

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2016 10:48 PM
Perfect
Would you mind marking my answer as correct if that answers your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-06-2016 11:11 PM
sure marked as correct!