Skip to content
GridPHP FrameworkGridPHP FrameworkGridPHP FrameworkDocumentation

Upgrading your version

To upgrade you just need drop-in replacement of lib folder.

  • Take a backup of current lib folder.
  • Replace lib from the new version archive to your existing datagrid implementation.
  • Clear browser cache.

Same process applies when upgrading from free version to full version.

If you are using custom toolbar buttons, there a slight change required after upgrade.

Previous implementation is to have JS code in following way:

jQuery("#list1").jqGrid('navButtonAdd',"#list1_pager",{...});
jQuery("#list1").jqGrid('navButtonAdd',"#list1_pager",{...});

In v2.8 and onwards, move this code inside a setTimeout() delay of 10ms:

setTimeout(()=>{
jQuery("#list1").jqGrid('navButtonAdd',"#list1_pager",{...});
jQuery("#list1").jqGrid('navButtonAdd',"#list1_pager",{...});
},10);