Screenshot your page.
$w("#myRepeater").onItemReady( ($item, itemData, index) => {
$item("#myRepeatedText").text = itemData.textField;
} );
So you can select using $item, only the corresponding element will take action (not global)
Screenshot your page.
$w("#myRepeater").onItemReady( ($item, itemData, index) => {
$item("#myRepeatedText").text = itemData.textField;
} );
So you can select using $item, only the corresponding element will take action (not global)