How to disable Scrollbar from repeating groups

This is the detailed procedure to disable the scroll bar of Repeating Groups in Vertical Scroll mode.

  1. Add a HTML Element as shown below.

  2. Add the following CSS section.

    /* Hide scrollbar for Chrome, Safari and Opera */ ::-webkit-scrollbar { display: none; } body{ -ms-overflow-style: none; /* IE and Edge */ scrollbar-width: none; /* Firefox */ }

Note: For firefox browser “scrollbar-width: none;” dosent seem to work. This could an issue with bubble apps in Firefox. Not 100% sure about that.

In order to remove the scrollbar from Firefox, we need to hide the scrollbar element. The solution is provided in this thread discussion mentioned below.

3 Likes