-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only shows 1 entry #19
Comments
I am having the same issue. Anyword on this? |
Hi, sorry, got no reply .....
|
Have you found a solution out yet on your own? |
Hi, no, found no solution for me...
|
Thanks. Guess I will have to change it. To bad the developer couldn't get back to you. He just lost 2 users. |
I answered it here: #18 (comment) It works only because items_per_page=1 in the example. |
Hi,
i am new in using jquery_pagination, and have a problem.
I used the example code from the download-package...
Here is my pagination-javascript:
function pageselectCallback(page_index, jq)
{
var new_content = jQuery('#hiddenresult div.item:eq('+page_index+')').clone();
$('#Searchresult').empty().append(new_content);
return false;
}
function initPagination()
{
// count entries inside the hidden content
var num_entries = jQuery('#hiddenresult div.item').length;
// Create content inside pagination element
$("#test").pagination(num_entries, {
items_per_page:2,
callback: pageselectCallback,
num_display_entries: 9,
load_first_page: true,
next_show_always: false
});
}
$(document).ready(function()
{
initPagination();
});
My Problem:
Between the
But there i only 1 item per page...and i set items_per_page:2....
What is the problem ?
Please help me....
The text was updated successfully, but these errors were encountered: