I have a Sharepoint list, and in Powerapps have 3 separate screens for new, edit and view.
On the View screen, i have a button to edit the list.
When I click on the button it successfully navigates me to the edit screen, and shows the edit form, however the ribbon along the top does not have "Save" button, just "Edit", "Copy Link" and "Customise in Powerapps". If I hit the "Edit" button, then "Save" does display
Is there any way I can get "Save" to display when using the custom button on the View screen?
In my SharePointIntegration OnEdit field I have
Set(SharePointFormMode, "EditForm"); EditForm(FormCoordinatorReview); Navigate(ScreenCoordinatorReview);
And on the button OnSelect I have
Set(SharePointFormMode, "EditForm"); EditForm(FormCoordinatorReview); Navigate(ScreenCoordinatorReview);