有人可以帮我吗?我正在尝试使用 JQGrid 使用 json 动态呈现列和数据。这些列似乎正在出现,但没有行数据。
以下是我从服务返回的 JSON:
{
"total": 1,
"page": 1,
"records": 1,
"rows": [
{
"id": 29291,
"cell": [
"Jim",
"1",
"2"
]
}
],
"columns": [
"Name",
"30/10/2012",
"23/10/2012"
],
"columnmodel": [
{
"name": "Name",
"index": "Name",
"align": "left",
"width": 25
},
{
"name": "30/10/2012",
"index": "30/10/2012",
"align": "left",
"width": 25
},
{
"name": "23/10/2012",
"index": "23/10/2012",
"align": "left",
"width": 25
}
]
}
我使用的javascript是:
$.ajax({
type: "GET",
url: "ListData?ID=1",
datatype: "json",
success: function(result){
$("#customgrid").jqGrid({
datatype: "json",
colNames: result.columns,
colModel: result.columnmodel,
data: result.rows,
width: 800,
pager: "#customgridpager",
viewrecords: true,
sortable: true,
gridview: true,
});
},
});
任何帮助将不胜感激。