What’s the data source?
I'm using a SharePoint list
What functions are you using on the Button control?
When the app opens I display a simple form with a button that directs points the the form I want them to use
Navigate(BrowseScreen1, ScreenTransition.UnCover)
The Items for BrowseScreen1 is
SortByColumns(Filter(JobDetails, StartsWith(StreetName_, TextSearchBox1.Text)), "StreetName_", If(SortDescending1, Descending, Ascending))
They select the item they want by pressing a control with OnSelect
Navigate(DetailScreen1, ScreenTransition.None)
DetailScreen1 lists some of the fields contained in the selected record. From there they press a button with OnSelect
Navigate(EditScreen1, ScreenTransition.Fade)
After they have made changes to EditScreen1 the Tick at the top of the form has the OnSelect
SubmitForm(EditForm1)
This is where it fails
About the Edit form, how do you configure it? Please show me more details about it.
EditScreen1 has 6 fields on it. 3 of them I have marked disabled=true because I don't want the user changing them,
EditForm1 is, I presume, a container for the 6 fields. It was created by the template
At the top it has a cross on one side and a tick on the other. The tick is where it fails with the message I described