Hi there,
any plans for a horizontal (scrolling) repeat container?
thx,
David
Hi there,
any plans for a horizontal (scrolling) repeat container?
thx,
David
Hi @DavidCeulemans!
Not at the moment - are you looking for the ability to scroll through your repeated elements, instead of seeing Items per page elements all at once?
Something you could try is with custom CSS: give the repeat a CSS class (e.g. scrolling-repeat), and then under your application settings > Custom CSS:
.scrolling-repeat {
max-height: 150px;
overflow-y: scroll;
}
The only downside is that your paging button (“Show more”) is hidden, so this only works if you’re displaying a specific number of records.
I hope this helps!
Cheers,
Peter Evans