Click here to Skip to main content
15,867,834 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.7K   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

 
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 
GeneralRe: paging above the grid Pin
Chella S24-Nov-10 23:49
Chella S24-Nov-10 23:49 
Question2grid view and 2 table in one page Pin
majid_3ma2-Nov-10 20:17
majid_3ma2-Nov-10 20:17 
Questionpaging with dynamic html table Pin
Guru_yogi6-Nov-09 1:39
Guru_yogi6-Nov-09 1:39 
AnswerRe: paging with dynamic html table Pin
NeoAlchemy8-Nov-09 15:15
NeoAlchemy8-Nov-09 15:15 
Try using $('#tblStudent').tablePagination({}) instead.
GeneralRe: paging with dynamic html table Pin
Guru_yogi8-Nov-09 18:01
Guru_yogi8-Nov-09 18:01 
GeneralRe: paging with dynamic html table Pin
NeoAlchemy8-Nov-09 18:13
NeoAlchemy8-Nov-09 18:13 
AnswerRe: paging with dynamic html table Pin
Guru_yogi8-Nov-09 19:51
Guru_yogi8-Nov-09 19:51 
Generalhelpful for me Pin
nicholas_pei10-Jun-09 16:44
nicholas_pei10-Jun-09 16:44 

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.