
Untitled
By: a guest on
Apr 28th, 2012 | syntax:
None | size: 0.51 KB | hits: 18 | expires: Never
jqgrid default to last page
$(function(){
$("#list").jqGrid({
url:'visitors.php',
datatype: 'xml',
mtype: 'GET',
colNames:['timestamp', 'user','last_visit','last_purchase','purchase_amount'],
colModel : gridColModel,
pager: '#pager',
rowNum:20,
rowList:[10,20,30],
sortname: 'timestamp',
sortorder: 'asc',
viewrecords: true,
gridview: true,
autowidth: true,
editurl: 'edit.php',
})
.navGrid('#pager',{edit:false,add:false,del:false,search:false})
});