MultiFilterSelect via Server-Side
MultiFilterSelect via Server-Side
JanNL_FR
Posts: 47Questions: 15Answers: 2
Hi,
I want to use https://datatables.net/examples/api/multi_filter_select.html via server-side.
Is that possible?
Now I get: 'no records found' when I make a selection in a drop-down list.
TestCase: https://campcare.eu/Drill/
The most likely cause: The bug usually sits on a chair at the computer :-)
Jan
This question has an accepted answers - jump to answer
Answers
Indeed it is. What I think it tripping you up is the use of regex in the search term. This is what is being sent to the server-side:
However, I doubt you want to do a regex search in the database (you could, but you'd server-side processing script would need to be updated to allow for that).
Try using:
to set and draw the search term.
Allan
Thanks Allen, works perfect.
Jan