0
從服務器檢索數據後,我無法在jqGrid中顯示數據。 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"
});
你可以在你的問題的文本中包含從服務器收到的確切的JSON數據。您可以使用[Fiddler](http://www.fiddler2.com/fiddler2/)或[Firebug](http://getfirebug.com/)來獲取數據。 – Oleg 2011-04-16 10:17:16