Vertical Scroll bar in template grid

0
Hi, Can a template grid in mendix 6 have vertical scroll bar to show more items? Need a quick reply, if yes how can I achieve that, suggest. Thank you.
asked
2 answers
1

a scroll bar will automatically appear, when contents of template grid contains more objects then client can show. 

The number of objects displayed depends on the widget settings: https://docs.mendix.com/refguide/template-grid

Take a look at Number of rows/columns.

 

answered
0

Hi,

You might be able to tweak something like this with css. For example by setting the template grid to show 100 items.

Furthermore adding a css class where you set a fixed height and let the rest overflow in a scroll function like:

.gridscroll{

height: 300px;

Overflow: scroll; }

 

A listview might however also be a good option to use.

 

 

 

answered