JQuery JQGrid local data loading issue
- by ollie314
Hi, I've got a problem with the following code
<script type="text/javascript">
var mydata = [ {id:"1",name:"foo"},{id:"2",name:"bar"} ];
jQuery(document).ready(function() {
jQuery("#lgrid").jqGrid({ data: mydata,
datatype: "local",
height: 150,
width:600,
rowNum: 10,
rowList: [10,20,30],
colNames:['id','name'],
colModel:[ {name:'id',index:'id', width:60, sorttype:"int"},
{name:'name',index:'name', width:60}],
pager: "#pgrid",
viewrecords: true,
caption: "Contacts" });
});
</script>
And In the body ....
<table id="lgrid"></table>
<div id="pgrid"></div>
With this code, I never display the data into the grid. Somebody has an idea about this issue ?
Thanks.