I’m trying to create a list of items that only shows a couple of them on the page at the a time, but no matter what settings I choose the list just shows all the items on the screen at once. I thought lists were supposed to scroll within their containers, not load the entire list on the screen.
Is this a bug, or am I not understanding how the list is supposed to work?
You can’t have a “paged lists” by default. Lists display the items of the collection, sorted as you’ve set it, and filtered as you’ve set it.
Also unfortunately you can’t make a list scrollable “inside a frame” on the page.
It is possible to implement pagination, but some extra logic for that is needed. I have some draft video tutorial about that, but will not finish it until next week. The idea is to have IDs for each list item, and filter list by the range of these IDs.