What happens with EL statements in a view build time in c:forEach loop.
<c:forEach var="v" values="#{bean.values}">
<p:inputText value="#{v.name}" />
</c:forEach>
class Bean {
public List<Pojo> getValues();
}
class Pojo {
public void setName (String);
public String getName();
}
How will be this code evaluated for render? To:
<p:inputText value="John Smith">
or
<p:inputText value="#{pojo.name}" >