Questions tagged [jquery-pagination]

The jquery-pagination tag refers to a broad list of jQuery plugins providing pagination experience to DOM elements such as

and
  • .
  • The tag refers to a broad list of jQuery plugins providing pagination experience to DOM elements such as <tr> (rows in tables) and <li> (list items in ordered or unordered lists). Examples of jQuery pagination plugins are :

    167 questions
    27
    votes
    2 answers

    Ajax pagination with the Kaminari gem

    After a recent railscast I'm using the kaminari gem in my website and I want to do ajax pagination The kaminari docs say: the helper supports Rails 3 unobtrusive Ajax. Does anyone have any hints or tutorials on how to do this? I'm using jquery,…
    21
    votes
    6 answers

    How to use SimplePagination jquery

    I am trying to use simplePagination on my code. (I am developing using MVC4 C#) Let say I have this bunch of codes
    muhihsan
    • 2,250
    • 6
    • 27
    • 42
    16
    votes
    6 answers

    Reset total pages in jquery pagination plugin

    I am using TwbsPagination plug in for displaying paging in my app. It is working fine when we set the page size while initializing. However, based on the search result, I want to reset the total page count. When I try using…
    Krishna Sarma
    • 1,852
    • 2
    • 29
    • 52
    12
    votes
    5 answers

    Pagination Alternatives

    I am looking for ideas for pagination alternatives. I am aware of 2 pagination schemes: Click on pages pagination - my favorite example Infinite scroll pagination - one implementation here that seems to work There must be some other less…
    mkoryak
    • 57,086
    • 61
    • 201
    • 257
    8
    votes
    7 answers

    Dynamic pagination in Jquery

    I have this code : //Pagination pageSize = 8; showPage = function(page) { $(".line-content").hide(); $(".line-content").each(function(n) { if (n >= pageSize * (page - 1) && n < pageSize * page) …
    Corentin Branquet
    • 1,556
    • 3
    • 17
    • 29
    8
    votes
    1 answer

    jQuery Pagination Plugin

    Hopefully this is something that will be easy to remedy. I'm having a bit of an issue understanding the jQuery Pagination plugin. Essentially, all I am trying to do is load a PHP file, and then paginate the results. I'm attempting to go off their…
    Dodinas
    • 6,705
    • 22
    • 76
    • 108
    5
    votes
    2 answers

    Two jquery pagination plugin in the same page doesn't seem to work

    I use jquery pagination plugin for paging... If there is one pagination plugin there is no problem for me... But if there is two one seems to work but the other doesn't seem too... Here is my code,

    ACP
    • 34,682
    • 100
    • 231
    • 371
    5
    votes
    1 answer

    Why is pagination dots not showing?

    I am using jquery.pagination.js plugin. I have 100 pages. The first and last page are numbers are showing, but the dots are not showing. Please check the screen shot and code. $("#Pagination").pagination(num_entries, { items_per_page : 10, …
    RSKMR
    • 1,812
    • 5
    • 32
    • 73
    5
    votes
    3 answers

    How to implement a pagination in Struts 2

    How can I implement paging in Struts 2 for the client side display and Hibernate as the persistence layer. Here is the code that I have done so far:
    edaklij
    • 4,121
    • 11
    • 31
    • 43
    4
    votes
    0 answers

    how to paginate a html ebook to display in android webview based app

    I am creating a android app based on webview in which i need to display html like a ebook page wise, the reason i have to use webview is because i need a changing header accroding to content view this link while scrolling header changes …
    4
    votes
    1 answer

    jqPagination - How do you specify the number of records per page?

    I've recently been toying around with jqPagination, which is a jQuery plugin for pagination. It's a really neat plugin and I love how you can type in the page number. However, I'm having some difficulty because there isn't much documentation on it.…
    user2059503
    • 67
    • 2
    • 6
    3
    votes
    5 answers

    Pagination with JavaScript

    I have html code that have some
    inside. I want to paginate them with javascript. How can I do that? (I know I can do it by PHP but I just want to do it with JS) the html generated by my php looks like that:
    Adrian Modliszewski
    • 1,114
    • 2
    • 18
    • 31
    3
    votes
    1 answer

    How to save multiple data variables into one cookie, using jQuery

    I have made pagination with jQuery and now I would like to save the selected state/page to cookie. I would need to save tab-id, offset and limit values. I know that I can write to cookie like this: $.cookie("example", "foo"); And then read…
    3
    votes
    3 answers

    JQuery Datatable moving the pagination to the top

    I am trying to move the pagination property to the upper right hand side of the table. I understand that I have to use the dom property. $(document).ready( function () { $('#myTbl').dataTable({ "bInfo":true, "bJQueryUI":…
    Mary
    • 1,505
    • 5
    • 27
    • 44
    3
    votes
    1 answer

    add more options in records per page dropdown using datatable jquery

    I've been using the datatable jquery (http://datatables.net/ ) plugin. Everything is working fine, but now I want to be able to select more than the default options of records per page, by default I can choose 10 , 25 , 50 , 100. I want to add 15…
    General Electric
    • 1,176
    • 3
    • 21
    • 44
    1
    2 3
    11 12