Hi,
I don't understand why this is working with an html table and not working with a server side table ...
An idea ?
Its an automatic button filter on a single column value
$('.filterSect').click(function(){
/* onclick get data-attribute of a button */
id = $(this).data("sect")
oTable.columns( 2 ).search( id ).draw();
});
Thanks