Scroll to top in Repeating Group with fixed number of rows

Hi @Sarah_Esteve,

It’s not possible, because a RG with a fixed number of rows simply isn’t scrollable, so it doesn’t make sense. When a RG has a fixed number of rows, Bubble evenly distributes the row content within the RG’s available height. The results can be paginated, but not scrolled.

If you can provide more detail on the desired layout and behavior, it would be easier to assist.

Basically, a RG will scroll vertically if all the following apply:

  • it doesn’t have a fixed number of rows
  • its content exceeds its height
  • Fit height to content is unchecked

This means it will also scroll if its height is constrained - i.e. either fixed height or max height is set.

Instead of a fixed number of rows, you could of course limit the results with :items until # to control the number of items displayed at once, and in that case, the RG will scroll if its content exceeds its height.

Anyway, hope it helps.