Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

<a jsf:rendered="#{...}"> is not interpreted as passthrough element

I don't understand why this piece of code is working:

<h:link value="Login" rendered="#{sessionBean.userInSessionBean == null}"  />

and this piece of code is not working:

<a jsf:rendered="#{sessionBean.userInSessionBean == null}">Login</a>
like image 554
Gavi Avatar asked Feb 08 '23 15:02

Gavi


1 Answers

A HTML element will only become a passthrough element if following conditions are met:

  1. There's at least one jsf:xxx attribute from http://xmlns.jcp.org/jsf namespace.
  2. There's at least one "identifying attribute" associated with a specific JSF component.

For the <a> element an identifying attribute is necessary so JSF can decide whether to interpret it as <h:commandLink>, <h:outputLink> or <h:link>. Without an identifying attribute, JSF wouldn't have any idea what component you actually meant to use, so any jsf:xxx attributes will be ignored. The jsf:rendered is not sufficient as identifying attribute because it appears on every single JSF component, so JSF would still have no idea which one you meant.

Given that you seem to intend to have a <h:link>, then use jsf:outcome as identifying attribute.

<a jsf:outcome="login" jsf:rendered="#{empty sessionBean.userInSessionBean}">Login</a>

A completely different alternative is to wrap plain HTML in an <ui:fragment rendered>. See also How to conditionally render plain HTML elements like <div>s?

like image 133
BalusC Avatar answered Feb 16 '23 22:02

BalusC