jqGrid horizontal scrollbar

前端 未结 13 2135
终归单人心
终归单人心 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 09:49

    I adjust this type of CSS in my jqgrid

    .ui-jqgrid .ui-jqgrid-bdiv {
     position: relative;
     margin: 0;
     padding: 0;
     overflow: auto;
     text-align: left;
    }
    

提交回复
热议问题