Hi @Anonymous,
Based on the blog that you mentioned, I have made a test on my side, and don't have the issue that you mentioned.
On your side, please take a try with the following workaround:
Set the OnNew property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- Add this formula */
Set(SharePointFormMode, "CreateForm");
NewForm(CreateItemForm);
Navigate(CreateScreen, ScreenTransition.None)
Set the OnEdit property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- Add this formula */
Set(SharePointFormMode, "EditForm");
EditForm(EditItemForm);
Navigate(EditScreen, ScreenTransition.None)
Set the OnView property of the SharePointIntegration control to following:
Refresh('YourSPList'); /* <-- Add this formula */
Set(SharePointFormMode, "ShowForm");
ViewForm(ShowItemForm);
Navigate(ShowScreen, ScreenTransition.None)
Modify the formula within the OnSave property of the SharePointIntegration control to following:
If(
SharePointFormMode = "CreateForm",
SubmitForm(CreateItemForm),
SharePointFormMode = "EditForm",
SubmitForm(EditItemForm)
)
please take a try with above solution I provided, then check if the issue is solved.
If the issue still exists, please consider take a try to clear cache of your browser, and then remove the custom form from your SP list, and re-create a new custom form for it, then take a try with above solution I provided, check if the issue still exists.
Best regards,