Datatables search for '%'
Datatables search for '%'
abreracc27
Posts: 7Questions: 5Answers: 0
in DataTables
When I try to search for '%' from the table, it still displays all data instead of filtering. All other special character works fine.
Here is my code.
This question has an accepted answers - jump to answer
Answers
You've enable
serverSide
, so the filtering is being done by your server-side scripts. You'll need to look at those. It's likely "%" is being treated as a wildcard, so it may need to be delimited.Cheers,
Colin