Check the RG’s parent container, especially if the fixed-height is unchecked and fit height to content is checked.
2 Likes
@mickceb Thanks. All RGs already set with fixed-height left unchecked and Fit height to content checked. But problem remains…
I just had this same issue, very frustrating.
My RG was inside of a group-focus (GF) of the same dimensions, and both were “Fixed”. I changed the GF (the parent) to “Align to parent”, and made it “Fit to content” instead of “Fixed-height” and my scrollbar disappeared.
I hope that’s helpful.
4 Likes
Thanks for your suggestion, @noyourbroker
Hello folks,
I’m having the same issue. Maybe it is related to the new responsive engine?
I was able to move on following this suggestion: Solution to remove scroll bar from Repeating Group on all browsers
Thanks!
1 Like
My RG was set to “Row” and “Fit width to content” was unchecked - set to horizontal scroll. After reading your answer I changed RG to “Align to parent” and enabled “Fit height to content”. The scroll bar disappeared and i can now make progress . Thank you so much.
You can add HTML element to a page:
<style type="text/css">
#noscrollbar::-webkit-scrollbar {
width: 0px;
height: 0px;
}
#noscrollbar::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
#noscrollbar{
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
#noscrollbar::-webkit-scrollbar-thumb {
background: transparent;
border: 0px none;
border-radius: 0px;
}
#noscrollbar::-webkit-scrollbar-thumb:hover {
background: transparent;
}
#noscrollbar::-webkit-scrollbar-thumb:active {
background: transparent;
}
#noscrollbar::-webkit-scrollbar-track {
background: transparent;
border: 0px none;
border-radius: 0px;
}
#noscrollbar::-webkit-scrollbar-track:hover {
background: transparent;
}
#noscrollbar::-webkit-scrollbar-track:active {
background: transparent;
}
#noscrollbar::-webkit-scrollbar-corner {
background: transparent;
}
</style>
And add element ID to a repeating group you want to not have the scrollbar, in this case the ID is: noscrollbar
2 Likes
This doesn’t seem like a very satisfying fix… It doesn’t actually solve the height problem on the RG… Or am I missing something ?