When I select an item of a gallery on the left of the screen, I show on the right half of the screen some more parameters of the selected item. I want to make one of this parameter (called "Implemented") editable for the selected item.
I inserted:
- text input: shows as default the gallery selected parameter (correctly) and the displayMode=If(Gallery.Selected.ID=EditRecord,DisplayMode.Edit,DisplayMode.View)
- edit icon: with OnSelect=UpdateContext({EditRecord:Gallery.Selected.ID})
- save icon: with OnSelect=UpdateContext({EditRecord: ""});Patch(Gallery.Selected,{ID:Gallery1.Selected.ID},{Implemented:TextInput.Text})
When I edit and then save the value, the value on the gallery and on the connected data is not updated.
FYI I used as guide this video PowerApps Editable Grid - YouTube
How can I update the value written in the text input updated in my data?
Thanks