Search function for a repeater

Oh my bad.Thats becuase the repeater doesn’t know what to do with that data. It has it all but doesnt know how to display it.

Add this into the $w.onReady where it says
page code goes here

$w(“#repeater1”).onItemReady( ($item, itemData, index) => {
$item(“#myRepeatedText”).text = itemData.textField;
} );

Replace myRepeatedText with element in the repeater

ItemData is results.items[indexId]’ so to get data from the dataset its itemData.the-id-of-field-in-dataset
To link more items in the repeater use $item(“# not $w(”#

The limit to repeaters currently is lag and only will display 50 items at a time without some code to add pages or append more data