How does one filter input fields (user input in text boxes, hidden fields, selects, textareas, etc.) in a datatable?
$('#datatable').dataTable({
"aoColumnDefs": [
{ "aTargets": [0], "bSearchable": true }, // <input type="text">
{ "aTargets": [1], "bSearchable": true }, // <select>
{ "aTargets": [2], "bSearchable": true }, // radio buttons
],
"aaSorting": [[1, 'asc']]
});