- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2022 02:39 AM
Hi all,
I am trying to make a list to refresh automatically when the amount of records from the list changes or after a certain time interval.
The client wants that after a record changes state, after fullfilling the record conditions, (this is done in a second tab in the list, not from the list quick edit) the list automatically update so the user doesn't have to press the refresh button.
Is there a psosible way to accomplish this?
Thanks in advance.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2022 07:15 AM
Currently, the only way to programmatically refresh a list component is to bind a client state parameter to the component and pass the client state parameter a timestamp that tells the list when it should refresh (usually just the current time). The oob list page already has this setup so I think you could achieve what you're looking for by doing something like:
- Clone the list page to a new variant
- Add an optional parameter to the list page for the page refresh
- Bind the optional page parameter to the listRefresh client state parameter
- On your form page, using whatever event needs to trigger the refresh, route the user back to the list page and pass the current datetime into your optional parameter on the list page. It shuold cause the list to refresh.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2022 07:15 AM
Currently, the only way to programmatically refresh a list component is to bind a client state parameter to the component and pass the client state parameter a timestamp that tells the list when it should refresh (usually just the current time). The oob list page already has this setup so I think you could achieve what you're looking for by doing something like:
- Clone the list page to a new variant
- Add an optional parameter to the list page for the page refresh
- Bind the optional page parameter to the listRefresh client state parameter
- On your form page, using whatever event needs to trigger the refresh, route the user back to the list page and pass the current datetime into your optional parameter on the list page. It shuold cause the list to refresh.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-16-2022 02:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-04-2024 09:40 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-05-2024 06:30 AM
@mcclainc1 the binding would happen on the client state parameter itself