Can i use open faces row condition to check output result?i tried to use in my code like this but it prints all the values regardless of condition
<o:row condition="#{item.errorCode==5}" >
<o:cell>
<h:outputText value="Fail" />
</o:cell>
</o:row>
<o:row condition="#{item.errorCode==3}" >
<o:cell>
<h:outputText value="Success" />
</o:cell>
</o:row>
is there any other way to do this?thanks
You can use the validation in the
rendered
attribute of the to control the display.