Certain search terms not working
Certain search terms not working
adamunified
Posts: 2Questions: 0Answers: 0
Hi,
I have an online software that uses Jquery DT for large lists of names and other information. Most of the time, the search function works perfectly, but in certain cases it does not.
I've created this example for reference, in it, searches for all names except "bello" reduce the table:
Thanks,
Adam
This discussion has been closed.
Replies
There are names in your "Assigned" column that are matching the search. You can turn off searching for that column using
columns.searchable
, for example:columnDefs: [{targets: 6, searchable: false}],
Kevin
Kevin,
Thank you, that does appear to have solved the issue.
Thanks,
Adam