Hello,
When the user selects the last row of data in the grid the grid will fill out to the maxHeight value set and displays white space under the last row of data. When the user then selects the top row the white space disappears and the height of the grid is changed to the proper height with height: 'flex' to not display white space after the final row of data. This only occurs when there is not enough data to fill the grid to its maxHeight. Is this an issue with just the Pro v3.3.2?
Here is a snippet of the object.
var cashObj = {
width: 'auto',
height: 'flex',
maxHeight: 650,
freezeCols: 4,
virtualX: true,
virtualY: true,
numberCell: {show: false},
title: "Cash",
....
}