Is there a way to select an item of my SharePoint List, like it's done with a Gallery Item?
Detailed Situation:
I generated an mobile App out of my SharePoint List. So I'm Having three Screens with BrowseGallery, Detail Screen and Edit Screen. The Forms on the Screens (Detail and Edit Form) are working with the Selected Item of the BrowseGallery (EditForm.Item = BrowseGallery.Selected) also the Delete and Edit Icons are working with it.
Now I want to "select" and Item of my SharePoint List manually by it's ID or something like that. For Example the user is typing the ID in a searchbox and gets directly to the Detailscreen with the "selected" Item. All other Functions (Deleting/ Editing) should also work with this manually "selected" Item.
Right now I archieved to "select" an Item with the Filter Function. So I created another Screen with a Detail Form (DetailForm2.Item = First(Filter('MySPList'; ID = BarcodeScanner2.Value)). This Workaround is nice, but makes it a little bit complicated with all the other functions.
TLDR:
So is there a way to "select" an Item of my SharePoint List or directly Filter and Select the right Item out of the given BrowseGallery? So it could be used in the Detail and Edit Form and for the Delete and Edit Buttons? This would make things much easier for me...
Thanks in advance for trying to help me 🙂