Search API : multiple search query
Search API : multiple search query
tigrou91430
Posts: 6Questions: 4Answers: 0
Hello,
I have create a datatable with server_processing acces to my database
table = $('#studyTable').DataTable( {
"processing": true,
"serverSide": true,
"ajax": "scripts/server_processing.php",
And I would like to create input search. It is Ok if I want to search one world in my input search;
For exemple : I would like to search masculin person.
But How to do a search input for search male AND female person in the same search.
Thank
This discussion has been closed.
Replies
Since you are using server-side processing the filtering is done by the server-side. You would need to modify the
server_processing.php
script to suit your needs if it doesn't already do what you require.Allan