server side processing and filtering

server side processing and filtering

epratoeprato 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

Answers

  • allanallan Posts: 63,689Questions: 1Answers: 10,500 Site admin

    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

  • daniel_rdaniel_r Posts: 460Questions: 4Answers: 67
    Answer ✓

    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

This discussion has been closed.