当我单击一个链接时,它应该用一些数据加载我的 jqGrid。我正在将要显示的数据转换为 json 并尝试填充数据。我检查了我的 json 对象(我使用 Gson().tojson(listObject) 进行转换)及其打印正确。
但是 onClick Data=localhost:8080/App/jsp/servlet?Param1=xxxx&Param2=333,我无法加载数据,我使用 Firebug 和 F12 开发人员进行了一些调查,发现请求没有被发送到 servlet获取数据。不知道出了什么问题。我是 JqGrid 的新手,可以指出我的错误吗?
<link type="text/css" href="../jquery-ui-1.9.2.custom/css/ui-lightness/jquery-ui-1.9.2.custom.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" media="screen" href="../jquery-ui-1.9.2.custom/js/src/css/ui.jqgrid.css" />
<script type="text/javascript" src="../jquery-ui-1.9.2.custom/js/jquery-1.8.3.js"></script>
<script type="text/javascript" src="../jquery-ui-1.9.2.custom/js/jquery-ui-1.9.2.custom.js"></script>
<script src="js/i18n/grid.locale-en.js" type="text/javascript"></script>
<script type="text/javascript" src="../jquery-ui-1.9.2.custom/js/src/jquery.jqGrid.js"></script>
<script type="text/javascript" src="../jquery-ui-1.9.2.custom/js/custom.js"></script>
<script src="../jquery-ui-1.9.2.custom/js/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="../jquery-ui-1.9.2.custom/js/src/grid.loader.js" type="text/javascript"></script>
这是我的jQuery代码
jQuery("#jqqGrid").jqGrid({
url: data, // the data is
datatype: 'json',
mtype: 'GET', // tried with POST as well as GET
colNames: ['ID','Name', 'From Date', 'To Date', 'Status'],
colModel: [
{name:'Id', index:'Id', width:55 },
{name: 'name', index:'name', width:90},
{name: 'from_Date', index: 'from_date', width: 90},
{name: 'to_Date', index: 'to_date', width: 90},
{name: 'status', index: 'status', width: 90},
],
rowNumber:10,
sortname: 'emp_Id',
pager: '#jqqGrid_pager',
viewrecords: true,
sortorder:'desc',
caption:'Employee Leave List',
onSelectRow: function(){
var sel = jQuery("#jqqGrid").jqGrid('getGridParam','selrow');
alert(sel);
}