Need help troubleshooting an issue. My canvas app has 3 pages.
1. Page 1 is a Gallery of items, user selects an item to edit. Datasource is a SharePoint list. When the user selects an item, a variable with the item ID is set
2. Page 2 uses Edit Form, with the item being the one selected on page 1. There are several fields the user can update on this page. When the form inputs are valid, the save button is enabled and the user can save the form. To illustrate, one of the fields the user can edit on this page is called 'Status'.
3. Page 3 uses Edit Form, with the same item being the one selected on page 1, or the item they were editing on page 2. There are several fields the user can update on this page, they are different fields than the ones presented on page 2. On this page, the field called 'Status' is read-only. It's an editable field on page 2, a read-only field on page 3.
Issue: when a user changes the 'Status' value on page 2, saves the form, then goes to page 3, the read-only value presented in the 'Status' field is not showing the latest value that was saved when the user made the update on page 2.
On page 3, I set the 'On Visible' property to Refresh(datasource). This has not had any effect.
Is there a way I can ensure the field values on page 3 reflect the values the user saved on page 2?