Hi, for any one looking for a way to disable the scroll bar you can just set the scroll bar width equal to zero (this is helpful to make mobile apps look more aesthetic). To do this add some code to the Page HTML Header (after double clicking on the page, you should get a pop-up as in the screenshot). Then paste this into the Page HTML Header:
<style> ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px; background-color: #F5F5F5; } ::-webkit-scrollbar { width: 0px; background-color: #F5F5F5; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #D62929; } </style>
Note, this hides the scrollbar of both the page and any repeating group on that page.
I know it’s a bit of a hack way of doing it, but it works. Hope this helps.
