How to get vertical scroll bar for data grid?

0
I have used fixed height, and I have tried it. but it does not work for me . Could you please guide me on this?
asked
1 answers
1

If you're letting your users scroll you might as well limit the amount of objects in the grid and use paging.

That being said, you could create a class in your scss files like the following and add grid-scroll as class to your grid.

 

.grid-scroll > .mx-grid-content, .grid-scroll > .widget-datagrid-content {
  max-height: 200px;
  overflow-y: scroll;
}

 

answered