Refresh List View

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2017 08:33 PM
Hi,
I have a requirement on the list view.
Requirement is that list should get refreshed when ever any user makes a change on a particular field on list view. How do i trigger the list view refresh ? and how do i navigate to the same page where the action was first initiated.
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2017 08:39 PM
Hi
Please refer the link below.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2017 08:54 PM
Please try something like this:
GlideList2.get("incident").refresh();
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2017 10:28 PM
If changing particular field then :
write an onchange client script of that field.
then do a location.reload();
Let me know if this was helpful
Have a great day ahead

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-03-2017 10:39 PM
divyamishra if you will write location.reload() in onchange() then it will not refresh the list , it will refresh the form.
refer the link that i had shared .