Is anyone else experiencing this right now?
There is a scroll bar appearing inside the repeating group, which currently only has 1 item. I have looked everywhere I could and I don’t know how to remove it, can anyone help?
if it’s one row then the row height must be longer than the RG max height, or you have a fixed height for the row and the contents are longer than that.
Add this html code on the page.
Where #(yourid) - is to be the id attribute, add the same name to the code and your RG.
<style>
#yourID::-webkit-scrollbar { display: none; }
#yourID {
-ms-overflow-style: none;
scrollbar-width: none;
}
</style>
This topic was automatically closed after 70 days. New replies are no longer allowed.