Datatable global search

Datatable global search

evobyteevobyte Posts: 8Questions: 7Answers: 0

I have create a datatable using server side scripting. I need a common search which can search in multiple columns with a space given word. Suppose I search 'Alex Software'. Alex is in one column and Software is in another column. How can I get this. Please help.

Answers

  • kthorngrenkthorngren Posts: 20,270Questions: 26Answers: 4,765

    If "server side scripting" means Server Side Processing then the server script is responsible for searching. You can get the search[value] parameter, see the SSP protocol docs for details, parse it to get the search terms for the columns then use that for the data query. Specifics of this will depend on the server side processing script you are using.

    Kevin

Sign In or Register to comment.