I hope we have some users familiar with slickGrid seeing as how StackOverflow uses it also :)
I have a HTML containing my slickGrid as follows:
<
I suggest adding the following code to the onpagingInfoChanged
dataView.onPagingInfoChanged.subscribe(function (e, pagingInfo) {
//......
///******************************************************
var divSize = 2 + (options.rowHeight * (pagingInfo.pageSize +1));
$("#myGrid").css( 'height' , divSize+'px' )
grid.resizeCanvas()
///*******************************************************
});
Being a bit lazy, I added the 2 px to the height to ensure the VScrollbar doesn't appear but I'm sure you can figure out something more pleasing.