How to add a scrollable section?

0
How can I add a scrollable section on the page (similar to iframe, to scroll through a list for example)? I tried the scrollable container widget but it didn’t work for me for some reason, I guess it’s designed for the layout rather than adding scrollable sections on the page. I can use styles for it but is there a Mendix widget for it?
asked
2 answers
1

Your question is not clear but up to my understanding of it, there is a widget called HTML/javascript snippet 

you can this snippet to give scroll able container code in the context area of the widget.

OR

You can use the data widgets and give the widget width and height according to your need or change the row limit values. it’ll act as an scroll able container

answered
1

Hi,

is it really an iframe what you are looking for? iframes are typically used to display content of other webpages within your pages.

If you are just looking for a solution to show your application content like data or text in one page, you might be looking for a css solution instead; you could set the width and or height of your container to a fixed size and set the overflow to auto. https://css-tricks.com/almanac/properties/o/overflow/

answered