如何在jqGrid中显示垂直滚动条

时间:2013-02-27 13:26:47

标签: jqgrid-asp.net

目前我正在开发一个使用jqGrid的任务。我需要显示一个带有jqGrid的垂直滚动条。

$('#user-list').jqGrid({
            height: "auto",
            width: "590",
            url: getUsersForClientGroupUrl + "?random=" + Math.random(),
            rowNum: 10,
            mtype: 'POST',
            viewrecords: false,
            postData: { testGroup: gettestGroupId(), active: true },
            datatype: 'json',
            colNames: ['testGroupID', 'Login', 'Role'],
            pgbuttons: false,
            pgtext: null,
            viewrecords: false,
            colModel: [
                { name: 'testGroupID', index: 'testGroupID', hidden: true },
                { name: 'Login', index: 'Login', search: false, width: 130 },
                { name: 'Role', index: 'Role', search: false, width: 100 }
            ],
            caption: "Users for test group: " + gettestGroupName(),
            pager: '#users-pager',
            ondblClickRow: function (userId) {
                editUser(userId);
            },
            sortname: 'Login',
            sortorder: 'asc',
            loadui: 'enable',
            loadError: function (xhr, status) {
                location.reload();
            }
        })

**

  • 图片详情:

**

enter image description here

任何人都可以帮我解决问题。

谢谢&问候, Santosh Kumar Patro

2 个答案:

答案 0 :(得分:1)

以下网址帮我解决了这个问题。 jqGrid vertical scrollbar

非常感谢Charles Mighty提供的帮助

答案 1 :(得分:0)

当网格大于分配的空间时,会出现

垂直滚动条,因此在您的情况下,将自动高度更改为您喜欢的任何尺寸,并且应该有垂直滚动条,请记住将高度从目前的高度降低