I did find a rather “ugly” work around:
- Set the max height of the ‘repeating’ row of the table element to 0 px.
- Add a condition to the ‘repeating’ row that sets the max height to 80px (or the desired height of course) once all of the data is loaded in the repeating group that is used as a data source for the table element. This condition should be "when repeating group (you use as data source for the table) is loading = no and repeating group list of … count > 0.

The idea behind is that because all the rows are 0 px high at first, they will be shown immediately (so no need to scroll down / for Bubble to do lazy loading). Once the all of the data is loaded in the repeating group, (and all of the table rows rendered), the height for the table rows can be set to the desired height and the data will be visible all at once.
1 Like