Conditionally display row using JSF Datatable

后端 未结 6 1276
無奈伤痛
無奈伤痛 2021-02-19 07:16

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

6条回答
  •  一个人的身影
    2021-02-19 08:04

    For people using richFaces, you can use rich:column's filterExpression attribute.

    
        ...
    
    

    If the condition is not met, the complete row is filtered out.

    Example is using seam EL!

提交回复
热议问题