Thanks for quick reply. I'm looking into your second option but for first.
Concatenation of two inputs in single input will return a single string and hence look for that single string.
see as per given link
value of input 1 = gecko and value of input 2 = KHTML
after concatenation, final string will be 'gecko, KHTML' and hence search for 'gecko, KHTML' which will result into 0 records.
Replies
1. Have two input fields which are concatenated into a single input and that is used for the single global filter.
2. Use a row based filter plug-in: http://datatables.net/development/filtering#row_filters
Allan
Thanks for quick reply. I'm looking into your second option but for first.
Concatenation of two inputs in single input will return a single string and hence look for that single string.
see as per given link
value of input 1 = gecko and value of input 2 = KHTML
after concatenation, final string will be 'gecko, KHTML' and hence search for 'gecko, KHTML' which will result into 0 records.