Closed (outdated)
Project:
Paging
Version:
6.x-1.0-beta3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
14 Jun 2010 at 22:31 UTC
Updated:
1 Dec 2016 at 14:13 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
nirbhasa commentedI replicated this. I disabled all js modules that might interfere with this, and it had no effect
However, in my node.tpl.php i was printing out
When I printed
print $node->body;it worked fineComment #2
nirbhasa commentedAlso if pager position is set to 'None' and
print $node->paging;is inserted, it doesnt work, even if $node->body is calledComment #3
jenlamptonI can confirm this problem.
It looks like the only content on the page that is updated via the AJAX request is within the div with class
paging-pager-contents. If the pager is within that div (as it is when it is printed either above the body, below, or both) then things work as expected. But when the pager is 'hidden' and printed manually somewhere outside that div - the ajax handler is not properly added to the pager.I've made some updates to the code so that the pager can be placed anywhere on the page and it will still know who it's parent is, but it could use some testing since my jQuery-Fu is not that great.
Comment #4
nancydru