https://github.com/ameyms/tabulate
A jquery plugin for working with paginated tables
https://github.com/ameyms/tabulate
bootstrap javascript jquery-plugin paginated-tables
Last synced: 4 months ago
JSON representation
A jquery plugin for working with paginated tables
- Host: GitHub
- URL: https://github.com/ameyms/tabulate
- Owner: ameyms
- License: mit
- Created: 2013-10-01T10:13:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-12T09:41:31.000Z (over 12 years ago)
- Last Synced: 2026-01-23T16:01:14.358Z (5 months ago)
- Topics: bootstrap, javascript, jquery-plugin, paginated-tables
- Language: JavaScript
- Size: 148 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Tabulate [](https://travis-ci.org/ameyms/tabulate)
========
A jquery plugin for working with paginated tables with emphasis on [Bootstrap](http://getbootstrap.com "Twitter Bootstrap")
Final API Goal:
```javascript
$('#mytable').tabulate({
// Function that returns a jquery deferred
source: xhrSource,
//A Function that accepts row, column and item and returns tds content as html
renderer: renderer,
// String or Function that accepts row, column and item and returns class string
cellClass: foo,
// String or Function that accepts row, column and item
// and returns an object that is set as $.data() for the td
cellMeta: bar,
pagination: $('#mypagination') //Bootstrap 'pagination' control
});
```
__NOTE:__ Column resize has not yet been implemented
License
------
This library is available under the [MIT license](https://github.com/ameyms/tabulate/blob/master/LICENSE "License")