我正在尝试在我的 Jqgrid 中渲染数据,但它只是没有显示出来。我的 Json 数据来自网络服务器,因此我尝试使用 Jsonreader 作为函数来格式化我的数据。请任何人指出我的错误。提前致谢。
这是我的 jqgrid 代码
jQuery(document).ready(function(){
jQuery("#grid").jqGrid({
url: 'localhost/webair/contactinfoes',
datatype: 'json',
ajaxGridOptions: { contentType: "application/json" },
colNames: ['Company','Firstname','Job Title','Last Update Time', 'Last Update User',
'Lastname', 'Uuid'],
colModel: [
{ name: 'comapany', width: 100},
{ name: 'firstname', width: 60},
{ name: 'jobtitle', width: 100},
{ name: 'lastupdatetime', width: 250, align: 'right' },
{ name: 'lastupdateuser', width: 100, align: 'right' },
{ name: 'lastname', width: 60 },
{ name: 'uuid', width: 250},
],
jsonReader: {
repeatitems: false,
root: function (obj) { return obj; },
page: function (obj) { return 1; },
total: function (obj) { return 1; },
records: function (obj) { return obj.length; }
},
rowNum:10,
rowList:[10,20,30],
pager: '#pager10',
viewrecords: true,
caption:"Terry's table",
}).navGrid('#gridpager');
})
这是我的json信息;
[ {
"cel":"asdf",
"company":"adsf",
"fax":"asdf",
"firstname":"asdf",
"id":98304,
"jobTitle":"asdf",
"lastUpdateTime":1331831984277,
"lastUpdateUser":"anonymousUser",
"lastname":"berk",
"phone":"adsf",
"uuid":"2asa8a2-d2b5-48a2-ba35-b0cfasdf3170f",
"version":0}]