Scrolling on Repeating group

Hello.

Repeating group had scrolling before. what happened to it?

not sure how i can keep a repeating group scrollable or not now.

You can always place the RG inside a Group with the option Allow vertical scrolling when content overflows checked.

1 Like

Make sure it’s set to “Ext. Vertical Scrolling” or “Vertical Scrolling” instead of “Full List” or “Fixed Number of Cells.” Also, ensure the height of the group allows scrolling and that no parent elements are restricting it. If you’re using the new responsive engine, double-check the container layout settings, as they might affect scrolling behavior.

You might have inadvertently changed the auto-size behaviour of one of the groups. Scrolling works just fine - but you need to ensure the RG is not auto-sizing to contents, since scrolling requires:

  1. Content that is too big for the container.
  2. The RG is configured to flow in the right direction.
  3. You have overflow enabled (for vertical - there is no horizontal option).

Easiest way - on the RG itself uncheck “Fit height to content” (or width, depending on which way you are going), and set a maximum value that is less than the total width of contents. This will cause the RG to expand to the maximum height (or width) possible. You might also need to play with the group layouts (e.g. checking expand to maximum vertical height) for the parent container too - it can get a little convoluted.

I have numerous RGs that reliably scroll in both directions using this approach.

This topic was automatically closed after 70 days. New replies are no longer allowed.