I would like to hide whole rows based on criteria.
Something similar to...
if(row.contains(value)) row.hide();
Is there an easy way to do this without diving into list.php? Right now I'm using callback_column on every row with a function that calls back to handler to check for 'value' and return an empty string if it finds it. It's ugly, shows empty rows in the table, and doesn't seem to work with relations correctly (it still displays them if I try to empty them).
Thanks