Sorry, here is more info
I don't know what the problem is, Firebug keeps telling me I am missing ]. But i went through the json several times and couldn't find an issue.
jqGrid: latest
OS: Vista
Browser: FF 3.5
<script type="text/javascript">
$(document).ready(function(){
$("#job-list").jqGrid({
url:'/com/indeed.cfc?method=getJobs',
datatype: 'json',
colNames:['Job Title','Company', 'City','State','Country','Date'],
colModel :[
{name:'jobtitle', index:'jobtitle', width:150},
{name:'company', index:'company', width:125},
{name:'city', index:'city', width:80},
{name:'state', index:'state', width:50},
{name:'country', index:'country', width:50},
{name:'jobdate', index:'jobdate', width:100}
],
jsonReader: {
root:'data',
records:20,
repeatitems:false,
id : 'jobkey'
},
pager: '#job-pager',
rowNum:20,
rowList:[10,20,30],
sortname: 'jobdate',
sortorder: 'desc',
viewrecords: true
});
});