So I just coded the show less / show more buttons but now the elements have the same text of the first one (guessing because it is in the repeater) also when i click on show more all the text boxes expand and not just the one i clicked
Is the code attached to the repeater item or to the repeater? You need to specify the item by using: let $item = $w.at(event.context); and then accessing your item as $item(“#txtFIeld”).text to update a single instance. Otherwise, setting: $w(“txtField”).text will update every instance of that field in the repeater.