I use infinite-scroll with mansonry and couchbase as Database. My Problem is that tt loads the same content after Page 2: Here is the code example:
Page 1:
<div id="container">
<div class="box">Page 1 Box 1</div>
<div class="box">Page 1 Box 2</div>
<div class="box">Page 1 Box 3</div>
</div>
<nav id="page-nav">
<a href="link_to_page_2">Next/a>
</nav>
Page 2:
<div id="container">
<div class="box">Page 2 Box 4</div>
<div class="box">Page 2 Box 5</div>
<div class="box">Page 2 Box 6</div>
</div>
<nav id="page-nav">
<a href="link_to_page_3">Next/a>
</nav>
Page 3:
<div id="container">
<div class="box">Page 3 Box 7</div>
<div class="box">Page 3 Box 8</div>
<div class="box">Page 3 Box 9</div>
</div>
<nav id="page-nav">
<a href="link_to_page_4">Next/a>
</nav>
Javascript:
var $container = $('#container');
$container.imagesLoaded(function(){
$container.masonry({
itemSelector: '.box',
columnWidth: 100
});
});
$container.infinitescroll({
navSelector : '#page-nav', // selector for the paged navigation
nextSelector : '#page-nav a', // selector for the NEXT link (to page 2)
itemSelector : '.box', // selector for all items you'll retrieve
loading: {
finishedMsg: 'No more pages to load.',
img: 'http://i.imgur.com/6RMhx.gif'
}
},
// trigger Masonry as a callback
function( newElements ) {
// hide new items while they are loading
var $newElems = $( newElements ).css({ opacity: 0 });
// ensure that images load before adding to masonry layout
$newElems.imagesLoaded(function(){
// show elems now they're ready
$newElems.animate({ opacity: 1 });
$container.masonry( 'appended', $newElems, true );
});
});
When I load the page it shows
Page 1 Box 1
Page 1 Box 2
Page 1 Box 3
->scroll
Page 2 Box 4
Page 2 Box 5
Page 2 Box 6
->scroll
Page 2 Box 7
Page 2 Box 8
Page 2 Box 9
..
My first idea was, that the next link on page 2 point to page 2 again. But when i disable inifinit-scroll I can easily click von Page 1 to Page 2 to Page 3 and so on, using the next Link.
Im using Couchbase in the background and the next link is something like this (pagination w couchbase):
?startkey="Box3-key"&startkey_docid=Box3&skip=1&limit=3
?startkey="Box6-key"&startkey_docid=Box6&skip=1&limit=3
?startkey="Box9-key"&startkey_docid=Box9&skip=1&limit=3
I have no clue what the problem is.
?decade=1980and is not a consistent increment, but this does not work because infinite-scroll does not know how to increment this. This really needs to be fixed. @felle82, did you find a solution for yours? – Sudeep Feb 1 at 5:22