Hello
from what i understand you want a button that when clicked it shows more information about the person it was clicked for. as i see you have a repeater each item has the member and the button.
now if that is the case then i would suggest the following:
- use one repeater with hide and show
-
use one repeater.
-
add the member and the button and a text box.
-
make the text box hidden on load
-
when clicking on the button show the text box (it contains the further info )
- use two repeaters and show extra info in the second one (what you are doing ?) -
add the repeaters.
-
when clicking on the button get the current item data → $w(‘#repeaterData’).getCurrentItem()
-
based on that show only the corresponding item in the other repeater. (using index or id or …) make an if statement to only show the wanted item on the second one.
- additional idea: when clicking on the button redirect the user to a dynamic page that hold all the members
see about repeaters here: https://www.wix.com/code/reference/$w.Repeater.html#
Massa