Repeaters and limit of 12 - lazy load possible?

Question:
We use repeaters extensively, and I’m wondering what techniques are available to get past the limit of 12 items?

Product:
WIX Studio

What are you trying to achieve:
We show a list of items using a repeater, generally there are fewer than 30 items, so it’s not a huge number. We would like all of the items to appear in the repeater. It could be a lazy load after the first 12 items. I just don’t want to force people to use the More button.

What have you already tried:
A More button works, but I want to make it easier for our users.

Additional information:
I’m adept at Velo / javascript, so I feel that’s a good approach? But where to start? Maybe some kind of lazy load?

Generate an INFINITE-REPEATER, by loading manually always the next items as soon as your scroll-pos. reaches the bottom-edge of your screen.

  1. How To Disable Infinite Scrolling

  2. SOLVED - Infinite Scroll issue

Instead of leeting your users click the → LOAD-MORE-BUTTON ← (old version), you maybe want to use something like —> viewportEnter() and viewportLeave() ???

This way you can automatically load the next repeater-data-chunk into your repeater, without clicking any button. You scroll till a certain position → and WOOM!!! —> repeater loads the next 12 items or how much you want.

You will find more stuff on this topic → by usage of the FORUM-SEARCH.

You can raise the limit from 12 in the dataset configuration, no code required