Hi,
I would like not to lose the paging and the sort parameters when I leave a page with a grid and I come back to this page.
Is it possible to get the page, rowNum, sortname, sortorder params (I think with getGridParam), put them in the URL scope, go to another page, and get those params back through the URL scope and give them in the URL hereafter in the code ? (putting Act_country.cfc?method=getAllCountries&page=url.pageNum does not give anything...)
jQuery(document).ready(function(){
jQuery('#list').jqGrid({
url:'Act_country.cfc?method=getAllCountries',
datatype: 'json',
mtype:'GET',
colNames:[
'<cfoutput>#StLabels["LBL_TAB_EDIT"]#</cfoutput>',
'<cfoutput>#StLabels["LBL_TAB_COUNTRY_CODE"]#</cfoutput>',
...
Thank you in advance, Michel