Hello community. I have beeing dealing with this for days and I hope someone could point me in the right direction.
In my app I have a button to create a "New Request". This action will do this:
Set(var_FormMode, "New"); Set(varRecord, Patch(Tbl_Database, Defaults(Tbl_Database), {Title: GUID(), Global_Status: "Draft"})); Navigate(Screen_NewEditRequests))
In the Screen "NewEditRequests" I have the following:
DefaultMode = If(var_FormMode = "New", FormMode.New, FormMode.Edit)
Item = If(var_FormMode = "New",varRecord, var_EditRecord)
The var_EditRecord came from a different screen with the OnSelect for a Gallery
All the data is in a Edit form with a SubmitForm action.
What I want to do is save the user progress but If I hit the submit button the form will be blank and I have to go back and load the data.
If possible to perform the save at any time so the user can continue adding data, saving and continue seeing the data in the form?
Thanks in advance for any help.
Regards