目前我正在处理使用 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();
}
})
**
- 图片详情:
**
任何人都可以帮助我解决问题。
谢谢和问候, 桑托什·库马尔·帕特罗