hello. I’ve been struggling with getting the height of the grid right for users with a variety of different screen sizes. Ultimately, what I’m trying to do is have the grid height resize to the viewport height with its own horizontal and vertical scroll bards on the bottom and right sides, respectively, without the browser’s scroll bar appearing due to overflow.
The grids I’m displaying are generally the whole page, so I’d like to use as much real estate as possible with out causing extra scrollbar intereference.
Right now, this is how I setup the sizing of my grids (autorowheight and autoheight are included here and set to false, just to be explicit)
width: ‘100%’,
height: ‘600’,
autorowheight:false,
autoheight: false
the 600 height is my attempt at finding a happy medium. Is the solution here to create some kind of container that is sized the way I need it to be, and then set the height of the grid to 100%?