ServerSide Search or filter on selected column
ServerSide Search or filter on selected column
How would one search on one or more columns, when using server side ajax retrieval?
When I look at your multi-column filtering, it processes the filtering on the client, and the server side search looks like it just passes on field with the search text.
Before I go an extend the api/options, I just want to make sure I'm not missing something.
Thanks!
When I look at your multi-column filtering, it processes the filtering on the client, and the server side search looks like it just passes on field with the search text.
Before I go an extend the api/options, I just want to make sure I'm not missing something.
Thanks!
This discussion has been closed.
Replies
DataTables will send sSearch_(int) for the column search (passed into fnFilter) to the server-side, so that it can deal with it: http://datatables.net/usage/server-side
Allan
Thanks again!!!