Hi everyone.
I have a dataset connected to a repeater in my site. I add a button to the repeater, so i have the button, with the same id in all the items of the repeater. The repeater works. The idea is if i click on that button in a especific item of my repeater, i can get the text of one column (field) for that especific item in my dataset. So the button click function should be something like:
export function button_click(event) {
get the value of the column 2 (of the especific item that i clicked in my repeater) //???
}
How can i do that?? I aprecciate any help