How to refresh repeater after submit

Hello @_eric , are you connecting your repeater manually (through elements) or by code? Because if it is manually connected, it should refresh the repeater as soon as the dataset is refreshed.

Otherwise, you should assign a new data to the repeater using the data property, like so:

$w("#myRepeater").data = newData

Let me know!