I developed AJAX interface with jQuery and jqGrid.
How I can remove horizontal scrollbar from my jqGrid table?
http://dskarataev.ru/jqgrid.png
If I s
i used jqgrid API method setGridHeight. it works fine for me in IE 8 also.
var gr = jq('#grid'); gr.setGridHeight(350,true);
i put this lines under 'loadComplete' function call.