我一整天都在努力让数据显示在jqgrid中。然后网格显示确定,但没有数据,我不知道为什么数据丢失。这是我试图加载的网页的响应
{total: "1",page: "1",records: "2",rows : [{id:"1", "cell":["Test1", "1234", "Info"]},{id:"2", "cell":["Test2", "5678", "Info"]}]}
这是加载信息的代码:
<link rel="stylesheet" type="text/css" media="screen" href="css/ui.jqgrid.css" />
<link rel="stylesheet" type="text/css" media="screen" href="css/jquery-ui-1.7.2.custom.css" />
<script src="Scripts/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="Scripts/grid.locale-en.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-1.7.2.custom.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.jqGrid.min.js" type="text/javascript"></script>
<script src="Scripts/json2-min.js" type="text/javascript"></script>
<script type="text/javascript">
//JS for the main history grid
jQuery(document).ready(function () {
jQuery("#datalist").jqGrid({
url: 'Data1.aspx',
datatype: 'json',
colNames: [
'Type'
, 'URN'
, 'Log'],
colModel: [{ name: 'id', index: 'id', sorttype: "int", width: 35 },
{ name: 'type', index: 'type', width: 45, align: "center" },
{ name: 'log', index: 'log', width: 35, align: "center"}],
height: 400,
width: 1165,
shrinkToFit: true,
caption: "Job History",
viewrecords: true,
sortorder: "desc"
})
});
我的json响应的格式是错误的,我错过了网格中的内容吗?它现在真的开始让我烦恼!
由于 路加
答案 0 :(得分:0)
看到帖子上的评论,我在开头的时候错过了引号的引号