Hello,
- How do i turn on always show vertical scroll bar in a relating group?
- how do I make a text box vertically scroll in a single group without just overflowing down the page?
Thanks
Hello,
Thanks
Iâd like to know this as well!
Thanks
any ideas why we canât see vertical scroll bar in a repeating group?
To see the scrollbar, I would suggest selecting the Vertical scrolling type of RG instead of the External vertical scrolling.
Cheers
Ambroise
Book a free 15 minutes call - happy to help if I can
Particularly Iâm wondering how to make a âthingâ have a scroll bar if I have a group that is shorter than the expanded thing.
The text box is the easiest example. Dynamic data fills it, but it either makes the screen ugly or I chop it off. I have the same issue with the calendar. When i have several events in a day, the calendar gets chopped off in week 4.
One âquick hackâ solution for #2 is actually to replace the text with a Multiline input, put your dynamic text in for both placeholder and initial content, then set the input to âdisabledâ. A more proper solution would be a custom HTML element with itâs own style.
you can install the classify plugin which is free and gives you the ability to add CSS to your app easily.
then you add a âclassâ to the group element and add an html element on the page. In the HTML element you would use the code to add the scroll bar
in that example I have a class added to a group of rg-meetings-container âŚthe max-height restricts the group height and then the overflow is for the scroll bars
Here is where I learned about it
Thanks for the answer.
Iâve been working with Classify since you suggested it. But I must be missing something.
I have a group âprivacyMsgParentâ with at âTextâ element inside. I add the class âscrollyâ to the element and an id to the Parent. In my HTML I have:
<style>
.scrolly {
max-height: 330px !important;
overflow-y: auto !important;
overflow-x: hidden !important;
}
#privacyMsgParent {
height: 390px !important;
}
</style>
My result is that the text box indeed is the right size and scrolls⌠but the wrapping group extends to the original (VERY LONG) size anyway. When I inspect I see something like thisâŚ
<div class="bubble-element Group" id="privacyMsgParent" style="position: absolute; box-sizing: border-box; z-index: 10; height: 4361px; width: 515.609px; left: 0px; top: 0px; border-radius: 0px;">
<div class="bubble-element Text scrolly" style="position: absolute; box-sizing: border-box; z-index: 6; height: 4304px; ...
There are âotherâ wrapping divs when Bubble renders the group. All have that size that I canât seem to adjust the height too.
What am I missing? Is there something else I need to do?
Thanks again for your time.
check out the classify plugin showcase forum threadâŚa user talks about an advanced technique to get the âotherâ wrapping divs to change heights according to a child elements settings.
Untick âSet fixed number of rowsâ
Tick âStretch rows to fill vertical spaceâ