I have a button on a edit form which should allow users to update the details in the form, the OnSelect code is
Patch('COI',Gallery2_3.Selected,{Approved: "Submitted ", ReSubmit:"Yes", Source_x0020_of_x0020_Conflict_x:DataCardValue85.Selected, Conflict_x0020_description:DataCardValue103.Text,
Staff_x0020_ID:DataCardValue73.Text,
Type_x0020_of_x0020_conflict:DataCardValue75.Selected,
Date_conflict_reported:DataCardValue83.SelectedDate,
Address_x0020_conflict_x0020_det:DataCardValue86.Text,
Comp_x0020_Employer:DataCardValue110.Selected,Employee_x0020_Comments:DataCardValue112.Text});
Navigate(SubmissionConfirmation,None)
When I make edits to a field and then click the button, I very quickly see that the form refreshes and resets all the values back to what they were originally before the edits. It then navigates to the SubmissionConfirmatio screen and no updates are saved.
If I remove Navigate(SubmissionConfirmation,None) this, it seems to work OK without the Naviagation.
I am sure this used to work previously, any help would be appreciated.
Thanks
Hi @Grichardson,
Based on the issue that you mentioned, I have also made a test on my side, and don't have the issue that you mentioned. The screenshot as below:
Set the OnSelect property of the "Patch" button to following:
Patch('20190126_case3', BrowseGallery1.Selected, EditForm1.Updates);
Navigate(DetailScreen1, ScreenTransition.Cover)
On your side, please take a try with the following formula:
Patch('COI', Gallery2_3.Selected, EditForm1.Updates); /* <-- EditForm1 represents the Edit form control within your app */
Navigate(SubmissionConfirmation, ScreenTransition.Cover)
In addition, you could also consider take a try with the following workaround:
Set the OnSelect property of the "Button" within your Edit form to following:
If(
!IsEmpty(
Errors(
'COI',
Patch('COI', Gallery2_3.Selected, EditForm1.Updates)
)
),
Navigate(SubmissionConfirmation, ScreenTransition.None)
)
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 re-create a new app based on your data source, then try above solution, check if the issue still exists.
Best regards,
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
197 | |
70 | |
50 | |
46 | |
20 |
User | Count |
---|---|
255 | |
120 | |
84 | |
79 | |
69 |