Introduction to Power Apps
Luise Freese
Azure & Power Platform Architect
DataSource to your tickets list

SubmitForm(frmTicket)OnSuccess or OnFailure

OnSuccess, show a toast, refresh the gallery, navigate backOnFailure, show an error toastOnReset, runs when the form is cleared
Refresh(Tickets) to the form's OnSuccess

ResetForm(frmTicket) blanks every fieldOnSuccessOnSuccess already navigates away, NewForm blanks the form next time
Patch(DataSource, record, changes) writes without a form$$
Patch(
Tickets,
ThisItem,
{ Status: "Resolved" }
)

Introduction to Power Apps