Hello,
I have a gallery that is displaying a sharepoint list. I'm trying to make updates to the list values for the selected gallery item.
So, what I've done is switched out the default labels with text input fields. The default property for these fields are set to ThisItem.'Field Name' so they display the proper values from the list.
For example, my gallery is called gal_HistoryGallery with the Items property set Filter('MyListName', 'Requested By Email'=varUserEmail) so it'll only display entries based on my email. The gallery is displaying the proper data. In the gallery, I have a text input called txtInp_FirstandLastName and the default property is set to ThisItem.'First and Last Name'.
I edit the value in the txtInp_FirstandLastName and click a button with a OnSelect function of Patch(gal_HistoryGallery.Selected, {'First and Last Name':txtInp_FirstandLastName.text}). But the value in the list doesn't get updated.
This is my first time attempting to make edits to a list directly from the gallery itself. I'm probably way of base on how I'm trying to perform this update. Any help is appreciated.