server side filtering with inputs
server side filtering with inputs
paperboard
Posts: 4Questions: 0Answers: 0
Hello,
I am having trouble integrating the server side example with the column filtering using inputs. Does anyone have a simple primer on how to integrate server side data with column filters using inputs?
Thanks.
I am having trouble integrating the server side example with the column filtering using inputs. Does anyone have a simple primer on how to integrate server side data with column filters using inputs?
Thanks.
This discussion has been closed.
Replies
[code]
$(document).ready(function() {
var oTable = $('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "scripts/server_processing.php"
} ).columnFilter(
{sPlaceHolder: "head:after",
aoColumns: [ {type: "text"},
{type: "select", values: [ 'Firefox','Seamonkey','Mozilla'] },
{type: "text"},
{type: "text"},
{type: "text"}
]
}
);
} );
[/code]
There are two bugs in jquery.dataTables.columnFilter.js which are easily fixed by perusing the bug report for that project.
thanks for this project allan