server side processing and filtering
server side processing and filtering
eprato
Posts: 3Questions: 3Answers: 0
Hi,
i have written code about a datatable using server side processing for pagination and sort: it works!
Now i'd add standard filtering on that datatable. Have i to do it in .NET or jquery? How?
Have i to use: http://yadcf-showcase.appspot.com/server_side_source.html?
Thanks
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Given that you are writing a server-side processing script, how you apply the filtering is entirely up to yourself. Personally I use an SQL
LIKE
statement for most cases.Allan
Since you using datatables with server setup the filtering (just like sorting/pagination) must be implemented on your server side if you will apply my yadcf plugin to your table , you will notice that whenever you will use the filters it will send request to your server, and its up to you to return the relevant filtered data back from server to you client