Click here to Skip to main content
15,860,972 members
Articles / Web Development / CSS

Client Side Gridview Pagination using JQuery

Rate me:
Please Sign up or sign in to vote.
4.63/5 (11 votes)
10 Jun 2009CPOL2 min read 160.5K   11.5K   47   33
Client Side Gridview Paging using Jquery
2.JPG

Introduction 

Here, I would like to show how to use Client Side Gridview Pagination using Jquery Table Pagination Plugin by using Ryan Zielke.  

Using the Code

First create a folder called "images". Then paste all the image files into that folder.

1.JPG

Next, add the reference of Jquery and Plugin JavaScript file in the ASPX Page.   

ASP.NET
<script src="jquery-1.3.2.min.js" type="text/javascript"></script>
<script src="jquery.tablePagination.0.1.js" type="text/javascript"></script>

Then add the CSS below. Here Width value of #testTable must be the same as the Width of your Gridview control.

CSS
#testTable { 
            width : 300px;
            margin-left: auto; 
            margin-right: auto; 
          }
          
           #tablePagination { 
            background-color:  Transparent; 
            font-size: 0.8em; 
            padding: 0px 5px; 
            height: 20px
          }
          
          #tablePagination_paginater { 
            margin-left: auto; 
            margin-right: auto;
          }
          
          #tablePagination img { 
            padding: 0px 2px; 
          }
          
          #tablePagination_perPage { 
            float: left; 
          }
          
          #tablePagination_paginater { 
            float: right; 
          }

Finally, add this script in your ASPX Page:

ASP.NET
<script type ="text/javascript" >
	$(document).ready(
 	function() {
 	$('table').tablePagination({});
 	});
 	</script> 

Now, add Gridview1_PreRender method in code behind, unless during paging you cannot see the Header of Gridview. Generally, Gridview does not use tbody, thead, or tfoot tags for the table that is generated when rendered in the browser. So, for Tbody and Thead, we need to add this function:

C#
protected void GridView1_PreRender(object sender, EventArgs e)
{
    GridView1.UseAccessibleHeader = false;
    GridView1.HeaderRow.TableSection = TableRowSection.TableHeader;
}

Configuration

You can change different parameters of jquery.tablePagination.0.1.js. Below are some of the settings from the authors Site:

  • firstArrow - Image - Pass in an image to replace default image.
    Default: (new Image()).src="./images/first.gif"
  • prevArrow - Image - Pass in an image to replace default image.
    Default: (new Image()).src="./images/prev.gif"
  • lastArrow - Image - Pass in an image to replace default image.
    Default: (new Image()).src="./images/last.gif"
  • nextArrow - Image - Pass in an image to replace default image.
    Default: (new Image()).src="./images/next.gif"
  • rowsPerPage - Number - used to determine the starting rows per page.
    Default: 5
  • currPage - Number - This is to determine what the starting current page is. Default: 1
  • optionsForRows - Array - This is to set the values on the rows per page.
    Default: [5,10,25,50,100]
  • ignoreRows - Array - This is to specify which 'tr' rows to ignore. It is recommended that you have those rows be invisible as they will mess with page counts.
    Default: [].

For the Future Release of Table Pagination Plugin

History

  • 10th June, 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
I am from India, currently i am working in Microsoft Platform for building web and mobile applications.

Comments and Discussions

 
AnswerWithout prerender event we can set right Grid headers with same code.... Pin
Member 1012713510-Oct-16 21:42
Member 1012713510-Oct-16 21:42 
Questionpage after postback Pin
silvia.stanila5-Apr-16 23:51
silvia.stanila5-Apr-16 23:51 
QuestionVery Helpful article Pin
SaziaSayyed15-Jul-15 23:59
professionalSaziaSayyed15-Jul-15 23:59 
Questionquestion Pin
akhtar.shahbaz12-Jun-15 21:08
professionalakhtar.shahbaz12-Jun-15 21:08 
Questionhide table pagination Pin
Member 107800225-Feb-15 0:58
Member 107800225-Feb-15 0:58 
Questionmy 5 :) Pin
King Fisher12-Jan-15 2:05
professionalKing Fisher12-Jan-15 2:05 
QuestionPlease reply Pin
Mahendra H. yadav4-Jul-14 3:59
Mahendra H. yadav4-Jul-14 3:59 
QuestionPagination work fine but the page number not shown in dropdownlist. It show in a textbox Pin
maharajothi20-May-14 19:53
professionalmaharajothi20-May-14 19:53 
QuestionMy vote is 5 Pin
aaronjave16-Apr-13 6:24
aaronjave16-Apr-13 6:24 
Questionpagination works if only the window is refreshed Pin
kasirajan -7-Apr-13 22:52
kasirajan -7-Apr-13 22:52 
QuestionContentPlace Holder Pin
Reima Cram24-Jan-13 20:04
Reima Cram24-Jan-13 20:04 
QuestionThanks Pin
Avinash Ramchandra Shinde28-Nov-12 2:04
Avinash Ramchandra Shinde28-Nov-12 2:04 
QuestionThis doesnt work if we do a server side Data Bind Pin
msdnexpert7-Oct-11 4:19
msdnexpert7-Oct-11 4:19 
AnswerRe: This doesnt work if we do a server side Data Bind Pin
pkaminiv17-May-12 23:20
pkaminiv17-May-12 23:20 
QuestionPaging in number Pin
megha.khamar@gmail.com17-Aug-11 23:59
megha.khamar@gmail.com17-Aug-11 23:59 
GeneralPrerender method for DataGrid Pin
u4bharat10-Jun-11 1:51
u4bharat10-Jun-11 1:51 
GeneralAdd Pager to a Repeater Pin
nipunasilva23-May-11 20:52
nipunasilva23-May-11 20:52 
GeneralMy vote of 5 Pin
nipunasilva23-May-11 20:50
nipunasilva23-May-11 20:50 
QuestionMissing Images Pin
jagman823-Jan-11 4:43
jagman823-Jan-11 4:43 
Generalgridview paging using javascript only not by JQUERY Pin
nilesh.d.mankar27-Dec-10 4:31
nilesh.d.mankar27-Dec-10 4:31 
GeneralMy vote of 4 Pin
bhavasinchana2-Dec-10 3:47
bhavasinchana2-Dec-10 3:47 
Questionpaging above the grid Pin
Chella S18-Nov-10 19:57
Chella S18-Nov-10 19:57 
AnswerRe: paging above the grid Pin
sagnik mukherjee21-Nov-10 22:37
sagnik mukherjee21-Nov-10 22:37 
GeneralRe: paging above the grid Pin
Chella S22-Nov-10 20:39
Chella S22-Nov-10 20:39 
GeneralRe: paging above the grid Pin
sagnik mukherjee23-Nov-10 6:33
sagnik mukherjee23-Nov-10 6:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.