I use Datatables to build up a table and to make it searchable.
$('#table').DataTable({
"paging" : true,
"info" : true,
"bFilter" : true,
});
I have a column, which contains the values "security" and "non-security". If I search for "security"... it matches of cause to both.
My Question is: How to use or how to configure datatables, that the search will filter out "non-security" items when searching for "security"?