I have some JSF code that currently works (as shown below), and I need to modify it to conditionally suppress the display of certain rows of the table. I know how to conditional
I've successfully hidden rows by putting a rendered attribute in all the
tags. The problem is that it suppresses the table headers. If your table has no table headers (they are
tags embedded in the
), this approach might work for you.
I ended up using multiple lists in the backing bean, as I needed the table headers.