views:

219

answers:

1

Hi,

I'm using jquery.columnfilters.js and I'm looking for a compatible table pagination.

I have tryed tablesorter & tablepager + jquery.columnfilters.js without success

Thanks

+1  A: 

Hi,

I have finally found one that is working with jquery.columnfilters.js jquery.tablePager-1.1.js which is very very basic but work ok.

http://slashjquery.com/tablepager/index.html#examples

Here is my code:

$(document).ready(function() {
$('table#filterTable') .columnFilters({wildCard:'*',notCharacter:'?', excludeColumns:[7]}) .tablePager();
});

I guess other pager can work but I have not found the correct way to add to my existing code.

lena