jqGrid horizontal scrollbar

前端 未结 13 2152
终归单人心
终归单人心 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:03

    i adjusted ui.grid.css because i did not need a horizontal scrollbar at all. i did this:

    .ui-jqgrid .ui-jqgrid-bdiv {
      position: relative; 
      margin: 0em; 
      padding:0; 
      /*overflow: auto;*/ 
      overflow-x:hidden; 
      overflow-y:auto; 
      text-align:left;
    }
    

    the commented was how it was, i just used overflow-x to hide the horizontal scrollbar and now all is fine with me.

提交回复
热议问题