Hi @domreg,

What I usually do in this situation is exactly what you mentioned—load an initial set of items (e.g., 50) and allow the user to load more. Here’s how I approach it:

I set up a group containing a repeating group and a “Load More” button. I also use a scroll plugin—personally, I use the ScrollActions plugin from Thimo, but there are other options available as well.

The idea is to set a custom state on the repeating group, naming it something like showTo. This state will be updated when the user clicks the “Load More” button. The button itself will only become visible when ScrollActions detects that the user has reached the end of the container (essentially when they’ve scrolled to the bottom of container). This way, the scroll position triggers the visibility of the button.

It works like a charm for me. Let me know if you need more help setting it up!

Best,

Artem

1 Like