Hi @bbsin ,
If the edit icon is in the Gallery, then OnSelect of the icon set to Select(Parent), and the selected record is Gallery.Selected. For example, in a TextInput box, Default should be set to Gallery.Selected.textColumnName
Speaking of Visible of the icons, please refer to below video, start from 5:30:
https://www.youtube.com/watch?v=Y5G5p84mD84
In short words:
1\ OnVisible of the screen:
Set(ItemID,0)
2\ OnSelect of edit icon:
Select(Parent);Set(ItemID,ThisItem.ID)
3\ Visible of other icons you would like to show after edit icon is clicked:
If(ItemID = ThisItem.ID, true,false)
4\ Visible of edit icon:
Select(Parent);Set(ItemID,ThisItem.ID)
5\ OnSelect of other icons:
Set(ItemID,0)
The question of patching attachment is not related to this post but in another post I can see, please provide more details there and wait for reply.
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.