从服务器检索数据后,我无法在jqGrid中显示数据。 jqGrid显示加载消息,但在完成加载后不显示数据。
$("#list27").jqGrid({
url: '/server/getdata.do?name=afonso',
datatype: "json",
height: 355,
width: 750,
colNames:['Email','Name', 'Empno', 'Notes'],
colModel:[
{name:'email', width:200},
{name:'name', width:200},
{name:'empno', width:100},
{name:'notes', width:250}
],
viewrecords: true,
sortorder: "asc",
caption: "Loading data from server at once"
});
答案 0 :(得分:0)
url:
'/server/getdata.do?name=afonso',
确保它实际上是
返回适当的数据。