Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goh-chunlin/one-simple-table-paging
A small piece of JS code which does simple table pagination.
https://github.com/goh-chunlin/one-simple-table-paging
css javascript pagination table-pagination
Last synced: 4 days ago
JSON representation
A small piece of JS code which does simple table pagination.
- Host: GitHub
- URL: https://github.com/goh-chunlin/one-simple-table-paging
- Owner: goh-chunlin
- Created: 2014-08-28T15:38:59.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-23T15:35:19.000Z (about 10 years ago)
- Last Synced: 2023-08-06T09:38:50.570Z (over 1 year ago)
- Topics: css, javascript, pagination, table-pagination
- Language: JavaScript
- Size: 230 KB
- Stars: 5
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
one-simple-table-paging
=======================A small piece of JS code which does simple table pagination.
![OneSimpleTablePaging](image/OneSimpleTablePagingPoster.png?raw=true)
## Project Description
Unlike most of the other solutions which require a lot of CSS files and images, this project aims to provide an alternative by just doing all the table pagination in one JS file without using any image. Users just need to put in one JS file in their project to have a simple table pagination setup for them.
## How to Use
In this section, we will show how OneSimpleTablePaging is applied to an existing HTML table which has id "main-table".
To keep it simple, OneSimpleTablePaging only has two things for the users to configure.
* Simplest case:
* *$('#main-table').oneSimpleTablePagination({});*
* Set the number of rows per page, for example 20 rows per page:
* *$('#main-table').oneSimpleTablePagination({rowsPerPage: 20});*
* Set the position of the pagination bar (can be either on top or bottom of the table):
* *$('#main-table').oneSimpleTablePagination({topNav: true});*
* The code above will have the pagination bar positioned on top of the table.
* Make the header of the table floating (aka sticky thead):
* *$('#main-table').oneSimpleTablePagination({floatingHeader: true});*
* The code above will have the header of table floating when scrolling page up and down.By default, rowsPerPage is 10 and topNav is false.
## Requirement
* jQuery Version 1.7.1 or above
## Demo
* Click here to enjoy the demo with Inori Aizawa: https://db.tt/6DUQxQzv
## Other Information
The code in this project is based on Ryan Zielke's tablePagination (http://neoalchemy.org/tablePagination.html) which is licensed under the MIT licenses: http://www.opensource.org/licenses/mit-license.php. Button designs are based on Google+ Buttons in CSS design from Pixify (http://pixify.com/blog/use-google-plus-to-improve-your-ui/).
The floating concept is copied from http://stackoverflow.com/a/4709775/1177328 and http://codepen.io/jgx/pen/wiIGc.
You can read more about this project at my blog: http://cuteprogramming.wordpress.com/2012/04/07/259/