Thanks, @anon65040322. Your mention of “scroll” got me to thinking. Turns out that some simple JS enables scrolling of a Repeating Group’s content. The following works for me…
<script>
$(function(){
$('#repeating_group_id').scrollTop(35);
});
</script>
I’ve added this to the corner menu (far right nav burger) of my mobile menu techniques demo. What it does is scroll the contents of the RG up by 35 pixels.
What I’d really like is for half of the last visible item to be shown, but this is a decent interim solution that doesn’t require adding extraneous elements to the page but lets the user know the content is scrollable.
Please Note: Exposing element id’s must be enabled in the app settings.