Write sample code for pagination using java script.

Answer Posted / sonylal

To use my javascript you need to:

1. include the javascript using <script src="pager.js">
in your page header;
2. include a small css to skin the page navigation-bar
(i.e. for emphasizing the selected page using bold and
underline style);
3. define an ID on the table you want to scroll. i.e.
<table id="results"> ;
4. place an empty <div/> in the place you want to display
the navigation bar. i.e. <div id="pageNavPosition"> ;
5. include an initialization script at the bottom of your
page like this:

<script type="text/javascript"><!--
var pager = new Pager('results', 3);
pager.init();
pager.showPageNav('pager', 'pageNavPosition');
pager.showPage(1);
//--></script>

Where 'results' is the id of the table (see step #3), 3 is
the number of records per page, 'pager' is the name of the
variable (in red... that's ugly I agree...), and
pageNavPosition is the ID of the DIV inside of which the
pagination bar will be placed. The showPage(1) indicates
that, when loading the page, the 1st one should be displayed.


Regards
www.jobpuja.com

Is This Answer Correct ?    47 Yes 28 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is notepad ++ an ide?

596


List some of the disadvantages of javascript.

574


What is the disadvantage of javascript?

546


java pgm for reads a file(text file) and removes all the spaces then the text and write this back into the same file. e.g: (Input) _______ chennai is fourth biggest city in india. (output) _______ chennaiisfourthbiggestcityinindia.

1637


Why do we need hoisting in javascript?

553






What will happen if an infinite while loop is run in Javascript?

586


What is the function of javascript?

586


What is undefined value means in javascript?

648


What are the data types available in javascript? Explain

557


What is servlet in javascript?

577


Is javascript event driven?

557


What is a boolean in javascript?

580


What does _ mean in javascript?

646


How to capture the Image width and height using QTP script ? Kindly answer plz.... Thanx in adavance...

3691


Is javascript object a hash table?

574