Alright so I have a pretty standard dynamic datatable but I cannot seem to get the search box to filter based on the value of an input or select box.
oTable = $('#itemTable').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": '<""f>t<"F"lp>',
"aoColumns": [
{ "sWidth": "45px", "bSearchable": false},
{ "sWidth": "150px"}, // <input type="text">
{ "sWidth": "150px"}, // <select>
{ "sWidth": "150px"}, // <select>
{ "sWidth": "125px"}, // <input type="text">
{ "sWidth": "75px", "bSearchable": false},
{ "sWidth": "75px", "bSearchable": false},
{ "sWidth": "75px", "bSearchable": false},
{ "sWidth": "75px", "bSearchable": false},
{ "sWidth": "75px", "bSearchable": false}
],
How can I get the datatable to filter the search results based on the value of a text box, and/or the current selected value of a select box?
I found this jQuery DataTables - custom filter for column that contains text field but I cant seem to make that work for me