I need to toggle the Visible property of a button, so that the button only shows up for the item(the row i guess) in the gallery that has been selected.
I tried to put a function in the Visible property of the button as follows:
If(Parent.Selected = true, true, false)
but this did not work as i had hoped, how can I achieve this.
I know i could probably put a button not within the gallery and grab the selected item, but i would prefer to have the button inside the gallery.
Thanks for any help!