[UI Builder] How to refresh a list on a page after new data has been submitted.SummaryWe can use the UI Builder to display/update a list on a page. Sometimes, we need to refresh the list to show updated data. The client page script that we prefer to use is: api.setState('refresh_list', {timestamp: Date.now()}); The issue is that the first time you press the submit button, the refresh doesn't happen. You have to press the button again for the list to get refreshed. ReleaseRome & San DiegoInstructionsThis is because new Date().getTime() OR Date.now() returns null at first time.Related LinksTo fix this: 1. Create a client state parameter. For ex. refreshReq 2. Create a page script. Use below code in that. api.setState('refreshReq', {timestamp: new Date().getTime()}); 3. Now, trigger this page script from event. We need to call the page script from page event when page is ready.