I have a SharePoint list and I have edited the Form with PowerApps. Since I had problems with SharePoint's native Save button, I created new Edit and Save Buttons in the PowerApps Form.
Again I'm having problems with Save button:
If somebody else than creator will edit a list item, Save doesn't work, although he has edit rights.
I have removed all mandatory field restrictions.
When pressing the Save, couple of dots moves quickly in the top of the form as a sign for a Saving process: but it seems to be just a "starting" of saving.
Since there are properties on 3 levels:
-SharePointIntegration
-SharePointForm
-The Button itself
I don't know what to try anymore: I have tried on SHarePointIntegration:
OnNew:
Refresh(Listname);NewForm(SharePointForm)
OnEdit:
Refresh(Listname);EditForm(SharePointForm)
OnSave is of course: SubmitForm(SharePointForm1)
In Save button
OnSave is:
SubmitForm(SharePointForm1)
Any Ideas?