jqGrid horizontal scrollbar

前端 未结 13 2088
终归单人心
终归单人心 2020-12-13 09:28

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

相关标签:
13条回答
  • 2020-12-13 10:09

    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.

    0 讨论(0)
提交回复
热议问题