Search column with combined string
Search column with combined string
Hello
i have a column where each row has either 'passed', 'failed' or 'ignored' as text . i want to do a filter search so only 'failed' and 'ignored' are visible. But I can't combine a search string within the same column. 'failed ignored' gives 0 results.
Any suggestions?
i have a column where each row has either 'passed', 'failed' or 'ignored' as text . i want to do a filter search so only 'failed' and 'ignored' are visible. But I can't combine a search string within the same column. 'failed ignored' gives 0 results.
Any suggestions?
This discussion has been closed.
Replies
[code]
var columnNumberToFilter = 3; //or whatever...
oTable.fnFilter( "(failed)|(ignored)", columnNumberToFilter, true );
[/code]