I seem to be having issues with adding a new record (I am using an Azure DB if that makes any difference)
The form only seems to let me submit a new record once, maybe twice. After that it doesnt work. I have to delete the form and re-make it. Its not a data validation issue, as I have tested it on using the same data (which sometimes also works twice)
Sometimes the form doesnt even reset to new when I open my add record screen even though i use:
NewForm(Form1);Navigate(Add_Invoice,ScreenTransition.Fade)
The Button in the Add_Invoice screen simply is:
SubmitForm(Form1)
The form itself, other than DataSource simply has an OnSuccess function of:
Back()
The OnSuccess function does work, and only goes back when it does submit.
The Cards functions are as follows: (using my database field CompanyName as the example)
DataField
"CompanyName"
Default
ThisItem.CompanyName
DisplayName
"CompanyName"
Update
Value1.text (I have also tried: Value(Value1.text)
The functions of the text input inside of the card are as follows:
Action:
OnChange
False
OnSelect
False
Data
Default
Parent.Default
Its driving me crazy. Please could someone help me identify where I am going wrong??