Upgrading your version
Drop-in Replacement
Section titled “Drop-in Replacement”To upgrade you just need drop-in replacement of lib folder.
- Take a backup of current
libfolder. - Replace
libfrom the new version archive to your existing datagrid implementation. - Clear browser cache.
Same process applies when upgrading from free version to full version.
Upgrading to v2.8 from previous versions
Section titled “Upgrading to v2.8 from previous versions”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);