I use remote-pagination plugin (http://grails.org/plugin/remote-pagination) v. 0.3 in Grails (1.3.7) project with jQuery plugin 1.7.1. I cannot upgrade grails to new version.
I have added remote-pagination code:
<util:remotePaginate action="index" total="${usersTotal}" update="boxtitle" params="${params}"
max="${grailsApplication.config.max.size}" pageSizes="[10:'10', 30: '30', 100:'100', 300:'300', 1000:'1000']"/>
As I found that question (Grails remote-pagination is refreshing entire page instead of div) I have added
<g:javascript library="jquery" />
to header section. I have also tried :
<g:javascript library="jquery" plugin="jquery"/>
In both cases blank page loads (url isn't changed).
If I open page with right mouse click it loads correct data.
===update===
Thanks for comments. As Chrome showed a few js errors related to installed plugins, I have double checked site in fresh Firefox with WebDeveloper. No javascript errors were found, jQuery is loaded as first script.
Interesting thing I have found is that page first updates records to correct page (so plugin & ajax works - the updated data is visible just for a moment) and then browser try to load another page showing blank one.