Search API : multiple search query

Search API : multiple search query

tigrou91430tigrou91430 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

Replies

  • allanallan Posts: 63,810Questions: 1Answers: 10,516 Site admin

    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

This discussion has been closed.