Datatables search for '%'

Datatables search for '%'

abreracc27abreracc27 Posts: 7Questions: 5Answers: 0

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

  • colincolin Posts: 15,143Questions: 1Answers: 2,586
    Answer ✓

    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

Sign In or Register to comment.