Is columFilter compatible with server side processing ?

Is columFilter compatible with server side processing ?

ludenluden Posts: 2Questions: 0Answers: 0
edited April 2014 in General
A sample code i use to instanciate datatable function :


$(document).ready( function () {
$('#example').dataTable({
"bProcessing": true,
"bServerSide": true,

"sAjaxSource": "http://datatables.net/release-datatables/examples/server_side/scripts/request.php"


} ).columnFilter();

} );




The data from the server displays but when i try to filter by column there is a server side call :)

I could load the data directly into the html but i wish to use datatable with columnfilter server side process, and i hope there is a way to do that.
This discussion has been closed.