An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

Tabulate [![Build Status](https://travis-ci.org/ameyms/tabulate.png)](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")