Hi,
I would like to use following JSF EL expression but the rendered part does not seem to have any effect:
<h:outputText value="#{bundle.link_next}" rendered="#{informationBean.information.next != null}"/>
I also tried using:
rendered="#{!empty informationBean.information.next}"
but that only seems to work for Strings, maps, arrays & collections.
So, how do I compare to null for the other types in the JSF EL?
Kind regards,
Dirk