1 . Instead of repeating for every checkbox, put it in a function that’s called from each checkbox event handler. This keeps the code easier to read and maintain.
2 . You can use items to set the data properly of the Repeater:
$w(“#myRepeater”).data = results.items;
Since you’re using a repeater, you will of course need to have an onReady() function. But you knew that already - right?
Good luck and have fun,
Yisrael