I have created a table using display tag library (version 1.1) and I'm filling it with values from a data base. I do not want to show certain rows. For example i only want to show the records that match a given string or regular expression.
Records retrieved from database :
foo
bar
string1
foo2
bar2
string2
Given filter : "foo"
Expected Result :
foo
foo2
Remarks - I need to filter a list of cached records, i can't apply the filter directly to the database query.
Thanks for the help.