DT 1.10 - Server side filtering
DT 1.10 - Server side filtering
![deliator](https://datatables.net/forums/uploads/userpics/273/nFFPKNAMKHQOC.jpg)
Hi,
I used this example with my own data : http://live.datatables.net/piqidoqo/549/edit
I got the 'processing' message but the filtering is not done.
Any help please ?
Marc
This discussion has been closed.
Replies
Did you actually write code to do the serverside filtering? when serverSide = true, filtering the dataset before returning it is not something DataTables does. It provided the needed information but your code has to use that information to do the filtering.
Hello, thanks for the answer.
Yes serverSide is true.
When i make a global search, the request is send to the server that generate a new json result, i hvae just to make ajax.reload.
In my case, i don"t know how send the request to the server.
Marc
We are going to need to see your code. If you are using the DataTable global search feature, it will used your defined ajax to send the request to the server. When DataTables "sees" the response, the table will be rebuilt automatically. If that is not happening, something is wrong with your code.
Hello,
This is the URL giving me the json return from the sever :
(in this example i show only the column 0 and 1, others are hiding)
the URL returns me a set with all the records containing the string 'myString'
if i change
to
it returns me the whole set, withour filtering on anotherString
I have no error in that case.
Marc