The filter field on the top right? Not so; it is not possible to hide one arbitrary row with arbitrary content. I was thinking maybe I could set the row's height to zero or somehow expand on row details.
To filter out a row you just need to make sure that your filtering criterion will cause that row and only that row to be removed. One way to do that is to have a hidden column which unique IDs and filter out those rows with IDs that you do not want (using a little bit of regex and a single column filter).
The problem with removing rows using DOM methods or setting their height to zero is that if you have paging enabled and you hide 6 rows from a view, then your user will be expecting 10 rows (or whatever the page length is), but they would only see 4. Thus filtering is the built-in way to do this.
Replies
Allan
The problem with removing rows using DOM methods or setting their height to zero is that if you have paging enabled and you hide 6 rows from a view, then your user will be expecting 10 rows (or whatever the page length is), but they would only see 4. Thus filtering is the built-in way to do this.
Allan