I am rewriting this here (with a more general solution) so that the code is readable. This seems to fix the resize issue I had:
// // Make the grid resizable. // $("#treegrid2").jqGrid('gridResize',{minWidth:350,minHeight:150, stop: function (grid, ev, ui) { $(grid.srcElement).parent ().css ("height", null); } });
Dave source share